diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-01-11 16:52:29 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-01-11 16:52:29 -0700 |
| commit | 483c057a771aca3b045ec8148fa5fb1a5e28fa17 (patch) | |
| tree | 7ee84cd567bac20ed769845b0e469fe39e1c2f6c /lib/std/io.zig | |
| parent | 3468872d8376602fdbfdb5b0d6d582c278ad1990 (diff) | |
| parent | d68adc5382a29687d2e24e27d9877473346a25e1 (diff) | |
| download | zig-483c057a771aca3b045ec8148fa5fb1a5e28fa17.tar.gz zig-483c057a771aca3b045ec8148fa5fb1a5e28fa17.zip | |
Merge branch 'clean up writeFileAllUnseekable by using readers'
closes #7156
Diffstat (limited to 'lib/std/io.zig')
| -rw-r--r-- | lib/std/io.zig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/std/io.zig b/lib/std/io.zig index fb5f00805c..e9a03445f6 100644 --- a/lib/std/io.zig +++ b/lib/std/io.zig @@ -125,6 +125,9 @@ pub const fixedBufferStream = @import("io/fixed_buffer_stream.zig").fixedBufferS pub const CWriter = @import("io/c_writer.zig").CWriter; pub const cWriter = @import("io/c_writer.zig").cWriter; +pub const LimitedReader = @import("io/limited_reader.zig").LimitedReader; +pub const limitedReader = @import("io/limited_reader.zig").limitedReader; + pub const CountingWriter = @import("io/counting_writer.zig").CountingWriter; pub const countingWriter = @import("io/counting_writer.zig").countingWriter; pub const CountingReader = @import("io/counting_reader.zig").CountingReader; |
