aboutsummaryrefslogtreecommitdiff
path: root/lib/std/io.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2021-01-11 16:52:29 -0700
committerAndrew Kelley <andrew@ziglang.org>2021-01-11 16:52:29 -0700
commit483c057a771aca3b045ec8148fa5fb1a5e28fa17 (patch)
tree7ee84cd567bac20ed769845b0e469fe39e1c2f6c /lib/std/io.zig
parent3468872d8376602fdbfdb5b0d6d582c278ad1990 (diff)
parentd68adc5382a29687d2e24e27d9877473346a25e1 (diff)
downloadzig-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.zig3
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;