9a9b91c940
It's finally done.. Signed-off-by: kaguya <vpshinomiya@protonmail.com>
14 lines
203 B
C
14 lines
203 B
C
|
|
#ifndef MLIBC_WINSIZE_H
|
|
#define MLIBC_WINSIZE_H
|
|
|
|
struct winsize {
|
|
unsigned short ws_row;
|
|
unsigned short ws_col;
|
|
unsigned short ws_xpixel;
|
|
unsigned short ws_ypixel;
|
|
};
|
|
|
|
#endif /* MLIBC_WINSIZE_H */
|
|
|