gnuports@2rosenthals.com ?????????????? ????? #28

???: "Dave Yeo" <gnuports@2rosenthals.com> ?? ????
?????????
??: Terminal width?
??: Sat, 14 May 2022 10:29:55 -0700
??: GNU Ports for eCS Mailing List <gnuports@2rosenthals.com>

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?
Dave

???????: ????, ??????, ??????.
?????????
??? ????????