screen.h 180 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 #ifndef _SCREEN_H_ #define _SCREEN_H_ void init_screen(); void done_screen(); void gotoyx(int y, int x); int ngetch(); void getscreensize(int& y, int& x); #endif /* _SCREEN_H_ */