1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/term/declarations_default.c.v
Alexander Medvednikov 014c3c97f0 all: byte => u8
2022-04-15 14:45:52 +03:00

11 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
}