Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
term
/
declarations_linux.c.v
11
lines
·
10
sloc
·
126 bytes
·
c6ff687e8a4a615e444b92628e4329ff4a023c20
Raw
1
module
term
2
3
pub
struct
C.termios {
4
mut
:
5
c_iflag int
6
c_oflag int
7
c_cflag int
8
c_lflag int
9
// c_line byte
10
c_cc [10]int
11
}
12