Removed ncurses helpers file

This commit is contained in:
2023-03-29 17:17:13 -05:00
parent f0313dc338
commit d6db6ad33b

View File

@@ -1,16 +0,0 @@
#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;
}