2020-08-20 03:40:15 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
// Copyright (c) 2015-2020 Zig Contributors
|
|
|
|
// This file is part of [zig](https://ziglang.org/), which is MIT licensed.
|
|
|
|
// The MIT license requires this copyright notice to be included in all copies
|
|
|
|
// and substantial portions of the software.
|
2020-06-08 07:33:02 +01:00
|
|
|
/// Deprecated: use `std.io.counting_writer.CountingWriter`
|
|
|
|
pub const CountingOutStream = @import("./counting_writer.zig").CountingWriter;
|
2020-03-10 19:27:45 +00:00
|
|
|
|
2020-06-08 07:33:02 +01:00
|
|
|
/// Deprecated: use `std.io.counting_writer.countingWriter`
|
|
|
|
pub const countingOutStream = @import("./counting_writer.zig").countingWriter;
|