1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/term/misc_nix.v

25 lines
385 B
V
Raw Normal View History

2020-01-28 07:18:19 +03:00
module term
import os
2020-01-28 07:18:19 +03:00
#include <sys/ioctl.h>
pub struct C.winsize {
pub:
ws_row u16
ws_col u16
ws_xpixel u16
ws_ypixel u16
2020-01-28 07:18:19 +03:00
}
fn C.ioctl(fd int, request u64, arg voidptr) int
2020-01-28 07:18:19 +03:00
pub fn get_terminal_size() (int,int) {
if is_atty(1) <= 0 || os.getenv('TERM') == 'dumb' {
return 80,25
}
w := C.winsize{}
2020-01-28 07:18:19 +03:00
C.ioctl(0, C.TIOCGWINSZ, &w)
return int(w.ws_col),int(w.ws_row)
2020-01-28 07:18:19 +03:00
}