Skip to content
Snippets Groups Projects
Commit 3800f31e authored by Ticki's avatar Ticki
Browse files

Use libc termios struct

parent 08746c0d
No related branches found
No related tags found
No related merge requests found
use libc::{c_int, c_uint, c_uchar};
use libc::c_int;
use std::mem;
pub use libc::termios as Termios;
#[cfg(not(target_os = "macos"))]
pub const TIOCGWINSZ: usize = 0x00005413;
......@@ -12,32 +15,9 @@ extern {
pub fn cfmakeraw(termptr: *mut Termios);
}
#[derive(Clone)]
#[repr(C)]
pub struct Termios {
c_iflag: c_uint,
c_oflag: c_uint,
c_cflag: c_uint,
c_lflag: c_uint,
c_line: c_uchar,
c_cc: [c_uchar; 32],
c_ispeed: c_uint,
c_ospeed: c_uint,
}
pub fn get_terminal_attr() -> (Termios, c_int) {
unsafe {
let mut ios = Termios {
c_iflag: 0,
c_oflag: 0,
c_cflag: 0,
c_lflag: 0,
c_line: 0,
c_cc: [0; 32],
c_ispeed: 0,
c_ospeed: 0
};
let mut ios = mem::zeroed();
let attr = tcgetattr(0, &mut ios);
(ios, attr)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment