v2 / vlib / term / declarations_default.c.v
10 lines · 9 sloc · 111 bytes · 014c3c97f0e50065356cecd3eb9e1c3cc265cd57
Raw
1module term
2
3pub struct C.termios {
4mut:
5 c_iflag int
6 c_oflag int
7 c_cflag int
8 c_lflag int
9 c_cc [20]u8
10}
11