#![crate_name = "clt"]
#![crate_type = "lib"]
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
html_root_url = "http://shaungillies.github.io/clt/")]
#![deny(non_camel_case_types)]
extern crate libc;
extern crate getopts;
pub use utils::sprintln;
pub use term::{
Style,
Color,
Black,
Red,
Green,
Yellow,
Blue,
Magenta,
Cyan,
White,
prompt,
confirm,
get_terminal_size,
print_via_pager,
isatty,
clear,
ProgressBar,
Editor,
};
mod core;
mod types;
mod utils;
mod term;
mod formatting;