feature. See also
. The project being documented here (as the example) is the Zig library itself.
linux.termios
pub const termios = if (is_mips or is_sparc) extern struct
File
Code
pub const termios = if (is_mips or is_sparc) extern struct {
iflag: tc_iflag_t,
oflag: tc_oflag_t,
cflag: tc_cflag_t,
lflag: tc_lflag_t,
line: cc_t,
cc: [NCCS]cc_t,
} else if (is_ppc or native_arch == .alpha) extern struct {
iflag: tc_iflag_t,
oflag: tc_oflag_t,
cflag: tc_cflag_t,
lflag: tc_lflag_t,
cc: [NCCS]cc_t,
line: cc_t,
ispeed: speed_t,
ospeed: speed_t,
} else extern struct {
iflag: tc_iflag_t,
oflag: tc_oflag_t,
cflag: tc_cflag_t,
lflag: tc_lflag_t,
line: cc_t,
cc: [NCCS]cc_t,
ispeed: speed_t,
ospeed: speed_t,
}