gecko-dev/third_party/rust/isatty
Andreas Tolfsen 934b77023e Bug 1340637 - Vendor geckodriver dependencies; r=ted
MozReview-Commit-ID: 1muL5Jc7ulI

--HG--
extra : rebase_source : ff2fdf700f38e66a932e3e73562190530ff1d47a
2017-05-23 18:03:07 +01:00
..
src
.cargo-checksum.json
.cargo-ok
.gitignore
.travis.yml
Cargo.toml
LICENSE-APACHE
LICENSE-MIT
README.md

Rust isatty

Build Status Latest Version

This crate provides the following two functions:

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

[dependencies]
isatty = "0.1"

src/main.rs

extern crate isatty;
use isatty::{stdout_isatty, stderr_isatty};

fn main() {
    println!("stdout: {}", stdout_isatty());
    println!("stderr: {}", stderr_isatty());
}

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.