2021-09-06 18:04:14 +02:00
|
|
|
module ui
|
|
|
|
|
2022-06-19 16:42:22 +02:00
|
|
|
pub struct C.termios {
|
2021-09-06 18:04:14 +02:00
|
|
|
mut:
|
|
|
|
c_iflag int
|
|
|
|
c_oflag int
|
|
|
|
c_cflag int
|
|
|
|
c_lflag int
|
2021-09-06 18:15:47 +02:00
|
|
|
// c_line byte
|
|
|
|
c_cc [10]int
|
2021-09-06 18:04:14 +02:00
|
|
|
}
|