mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
11 lines
126 B
V
11 lines
126 B
V
module term
|
|
|
|
pub struct C.termios {
|
|
mut:
|
|
c_iflag int
|
|
c_oflag int
|
|
c_cflag int
|
|
c_lflag int
|
|
// c_line byte
|
|
c_cc [10]int
|
|
}
|