once again, just like Linux (and IRIX too)... Hrm, maybe I can just do

something special on Solaris, and make the rest of these things all use
a common file.
This commit is contained in:
lindes 2001-08-28 01:25:01 +00:00
parent bc5e67fef8
commit 4adfc6d5a7
1 changed files with 28 additions and 0 deletions

28
arch/FreeBSD/terminfo.c Normal file
View File

@ -0,0 +1,28 @@
/*
* arch/Linux/terminfo.c -- routines for getting terminal
* information on Linux machines.
*
* Copyright 2001, David Lindes. All rights reserved.
*/
#include <sys/ioctl.h> /* for ioctl() */
/* globals */
extern int rows;
extern int cols;
void gettermsize()
{
struct winsize info;
/* try to get data via IOCTL: */
if (ioctl(1 /* stdout */, TIOCGWINSZ, &info) != -1)
{
/* if successful, and the data seems sane, set the
* program's globals: */
if(info.ws_col > 0)
cols = info.ws_col;
if(info.ws_row > 0)
rows = info.ws_row;
}
}