Lines Matching defs:termwidth
107 int termwidth;155 termwidth = 0;157 termwidth = strtonum(p, 0, INT_MAX, NULL);158 if (termwidth == 0 && ioctl(STDOUT_FILENO, TIOCGWINSZ, &win) == 0 &&160 termwidth = win.ws_col;161 if (termwidth == 0)162 termwidth = 80;163 if (termwidth <= 8)164 termwidth = 1;166 termwidth -= 8;