[go: up one dir, main page]

crossterm 0.1.0

An crossplarform terminal library for manipulating terminals.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[macro_use]
mod shared;
mod kernel;
pub mod crossterm_cursor;
pub mod crossterm_style;
pub mod crossterm_terminal;

use shared::traits::{Construct};

#[cfg(windows)]
extern crate winapi;
#[cfg(unix)]
extern crate libc;