source: bootcd/isolinux/syslinux-6.03/com32/lib/sys/screensize.c

Last change on this file was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 354 bytes
Line 
1#include <unistd.h>
2#include <errno.h>
3#include "file.h"
4
5int getscreensize(int fd, int *rows, int *cols)
6{
7    struct file_info *fp = &__file_info[fd];
8
9    if (fd >= NFILES || !fp->iop) {
10        errno = EBADF;
11        return -1;
12    }
13
14    *rows = fp->o.rows;
15    *cols = fp->o.cols;
16
17    if (!*rows || !*cols) {
18        errno = ENOTTY;
19        return -1;
20    }
21
22    return 0;
23}
Note: See TracBrowser for help on using the repository browser.