Files
chat_application/ncurses_helpers.h

17 lines
188 B
C

#include <ncurses.h>
int getmaxy(WINDOW* window) {
int y;
int x;
getmaxyx(window,y,x);
return y;
}
int getmaxx(WINDOW* window) {
int y;
int x;
getmaxyx(window,y,x);
return x;
}