#[repr(C)]struct LinuxTermios {
c_iflag: u32,
c_oflag: u32,
c_cflag: u32,
c_lflag: u32,
c_line: u8,
c_cc: [u8; 19],
c_ispeed: u32,
c_ospeed: u32,
}Expand description
Minimal Linux termios (asm-generic) layout for TCGETS. This mirrors asm-generic: 4x tcflag_t (u32), 1x cc line (u8), c_cc[19] (u8), and ispeed/ospeed (u32 each).
Fields§
§c_iflag: u32§c_oflag: u32§c_cflag: u32§c_lflag: u32§c_line: u8§c_cc: [u8; 19]§c_ispeed: u32§c_ospeed: u32