Mailing List gnuports@2rosenthals.com Archived Message #30 | tilbake listen |
|
---|
In <list-3690493@2rosenthals.com>, on 05/14/22
at 10:29 AM, "Dave Yeo" <gnuports@2rosenthals.com> said:
Hi Dave,
Need something like this, but we are missing TIOCGWINSZ()
int term_width(int fd)
{
struct winsize geometry;
geometry.ws_col = 0;
if(ioctl(fd, TIOCGWINSZ, &geometry) >= 0)
return (int)geometry.ws_col;
return -1;
}
Ideas? Even OS/2 API?
Assuming this is a VIO app, the Vio functions are your friends.
VioGetMode should give you what you need.
Abboner: Feed,
Digest,
Index. Stopp abbonement E-post til ListMaster |