This crate provides the following three functions:
rust
fn stdin_isatty() -> bool
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
].
The stdin_isatty
function is not yet implemented for Windows. If you need it,
please check [dtolnay/isatty#1] and contribute an implementation!
Cargo.toml
toml [dependencies] isatty = "0.1"
src/main.rs
```rust extern crate isatty; use isatty::{stdinisatty, stdoutisatty, stderr_isatty};
fn main() { println!("stdin: {}", stdinisatty()); println!("stdout: {}", stdoutisatty()); println!("stderr: {}", stderr_isatty()); } ```
Licensed under either of
at your option.
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.