1 2 3 4 5 6 7 8 9
#ifndef SCREEN_H #define SCREEN_H #include <curses.h> extern WINDOW *screen_init(bool israw); extern void screen_end(void); #endif /* SCREEN_H */