Helper functions for retrieving stdin, stdout, stderr to work with libc.
libc
Add this to your Cargo.toml:
Cargo.toml
rust [dependencies] libc-stdhandle = "0.8.2"
And you can: ```rust extern crate libcstdhandle; use libcstdhandle::*;
unsafe { stdout() } ```