diff options
| author | Veikka Tuominen <git@vexu.eu> | 2023-05-24 16:03:44 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-24 16:03:44 +0300 |
| commit | 7cb2e653a20698b4b8050705bcb72afeea9df63b (patch) | |
| tree | e8d6161a0258448cd6fcb6bad9f81fc31ad56c8a /lib/std/io.zig | |
| parent | b2a514b3d2d2d880a41a26e798fb3c9ee014c229 (diff) | |
| parent | 93d9c9bf319e78045c70d1e6260b15e3319c82b9 (diff) | |
| download | zig-7cb2e653a20698b4b8050705bcb72afeea9df63b.tar.gz zig-7cb2e653a20698b4b8050705bcb72afeea9df63b.zip | |
Merge pull request #15806 from linusg/std-io-tty
std: Move TTY from std.debug to std.io and add missing colors
Diffstat (limited to 'lib/std/io.zig')
| -rw-r--r-- | lib/std/io.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/std/io.zig b/lib/std/io.zig index d95997f853..f6d893c7dd 100644 --- a/lib/std/io.zig +++ b/lib/std/io.zig @@ -155,6 +155,8 @@ pub const BufferedAtomicFile = @import("io/buffered_atomic_file.zig").BufferedAt pub const StreamSource = @import("io/stream_source.zig").StreamSource; +pub const tty = @import("io/tty.zig"); + /// A Writer that doesn't write to anything. pub const null_writer = @as(NullWriter, .{ .context = {} }); |
