2012-07-24 18:43:34 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2013-07-10 15:26:01 +02:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2012.
|
2012-07-24 18:43:34 +02:00
|
|
|
|
2013-07-10 15:26:01 +02:00
|
|
|
This file is part of the Sortix C Library.
|
2012-07-24 18:43:34 +02:00
|
|
|
|
2013-07-10 15:26:01 +02:00
|
|
|
The Sortix C Library is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
option) any later version.
|
2012-07-24 18:43:34 +02:00
|
|
|
|
2013-07-10 15:26:01 +02:00
|
|
|
The Sortix C Library is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
|
|
License for more details.
|
2012-07-24 18:43:34 +02:00
|
|
|
|
2013-07-10 15:26:01 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
2012-07-24 18:43:34 +02:00
|
|
|
|
2013-06-25 01:11:51 +02:00
|
|
|
termios/tcgetwinsize.cpp
|
2013-07-10 15:26:01 +02:00
|
|
|
Access to terminal resolution.
|
2012-07-24 18:43:34 +02:00
|
|
|
|
2012-09-29 00:36:46 +02:00
|
|
|
*******************************************************************************/
|
2012-07-24 18:43:34 +02:00
|
|
|
|
2012-09-22 00:44:41 +02:00
|
|
|
#include <sys/syscall.h>
|
2013-06-12 13:12:29 +02:00
|
|
|
|
2012-07-24 18:43:34 +02:00
|
|
|
#include <termios.h>
|
|
|
|
|
2013-06-12 13:12:29 +02:00
|
|
|
DEFN_SYSCALL2(int, sys_tcgetwinsize, SYSCALL_TCGETWINSIZE, int, struct winsize*);
|
2012-07-24 18:43:34 +02:00
|
|
|
|
|
|
|
extern "C" int tcgetwinsize(int fd, struct winsize* ws)
|
|
|
|
{
|
2013-06-12 13:12:29 +02:00
|
|
|
return sys_tcgetwinsize(fd, ws);
|
2012-07-24 18:43:34 +02:00
|
|
|
}
|