mirror of
https://github.com/vlang/v.git
synced 2025-09-14 23:12:33 +03:00
10 lines
106 B
V
10 lines
106 B
V
module ui
|
|
|
|
struct C.termios {
|
|
mut:
|
|
c_iflag int
|
|
c_oflag int
|
|
c_cflag int
|
|
c_lflag int
|
|
c_cc [10]int
|
|
}
|