Iros
 
Loading...
Searching...
No Matches
ioctl.h
Go to the documentation of this file.
1#pragma once
2
3#include <ccpp/bits/config.h>
4
6
7struct winsize {
8 unsigned short ws_row;
9 unsigned short ws_col;
10 unsigned short ws_xpixel;
11 unsigned short ws_ypixel;
12};
13
14#define TIOCGWINSZ 1
15
16int ioctl(int __fd, unsigned long __request, ...);
17
int ioctl(int __fd, unsigned long __request,...)
#define __CCPP_END_DECLARATIONS
Definition config.h:8
#define __CCPP_BEGIN_DECLARATIONS
Definition config.h:7
Definition ioctl.h:7
unsigned short ws_row
Definition ioctl.h:8
unsigned short ws_col
Definition ioctl.h:9
unsigned short ws_xpixel
Definition ioctl.h:10
unsigned short ws_ypixel
Definition ioctl.h:11