Rust isatty

Build Status Latest Version

This crate provides the following two functions:

rust fn stdout_isatty() -> bool fn stderr_isatty() -> bool

On Linux and Mac they are implemented with libc::isatty. On Windows they are implemented with kernel32::GetConsoleMode.

Usage

Cargo.toml

toml [dependencies] isatty = "0.1"

src/main.rs

```rust extern crate isatty; use isatty::{stdoutisatty, stderrisatty};

fn main() { println!("stdout: {}", stdoutisatty()); println!("stderr: {}", stderrisatty()); } ```

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in isatty by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.