termion/src/lib.rs

14 lines
183 B
Rust
Raw Normal View History

2016-03-06 13:54:26 +00:00
#![feature(libc)]
extern crate libc;
2016-03-07 15:01:20 +00:00
mod termios;
2016-03-06 13:54:26 +00:00
2016-03-07 15:01:20 +00:00
mod control;
pub use control::TermControl;
2016-03-06 13:54:26 +00:00
2016-03-07 15:01:20 +00:00
mod raw;
pub use raw::{raw_mode, TerminalRestorer};
2016-03-06 13:54:26 +00:00
2016-03-07 15:01:20 +00:00
mod size;
pub use size::termsize;