screen.h 154 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 /* screen.h */ #include <ncurses.h> void init_screen(); void done_screen(); void gotoyx(int y, int x); int ngetch(); void getscreensize(int& y, int& x);