mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-07 14:24:43 +00:00
Start implementing https://github.com/ziglang/zig/issues/4917 which is to rename instream/outstream to reader/writer. This first change allows code to use Writer/writer instead of OutStream/outStream, but still maintains the old outstream names with "Deprecated" comments.
5 lines
209 B
Zig
5 lines
209 B
Zig
/// Deprecated: use `std.io.c_writer.CWriter`
|
|
pub const COutStream = @import("./c_writer.zig").CWriter;
|
|
|
|
/// Deprecated: use `std.io.c_writer.cWriter`
|
|
pub const cOutStream = @import("./c_writer.zig").cWriter;
|