toaruos/userspace/extra/test_size.c
2014-06-07 23:13:29 -07:00

15 lines
380 B
C

/* This file is part of ToaruOS and is released under the terms
* of the NCSA / University of Illinois License - see LICENSE.md
* Copyright (C) 2013 Kevin Lange
*/
#include <stdio.h>
#include <sys/ioctl.h>
int main(int argc, char * argv) {
struct winsize w;
ioctl(0, TIOCGWINSZ, &w);
printf("This terminal has %d rows and %d columns.\n", w.ws_col, w.ws_row);
return 0;
}