mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
10 lines
111 B
V
10 lines
111 B
V
module term
|
|
|
|
pub struct C.termios {
|
|
mut:
|
|
c_iflag int
|
|
c_oflag int
|
|
c_cflag int
|
|
c_lflag int
|
|
c_cc [20]u8
|
|
}
|