mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-03-26 19:32:22 +01:00
14 lines
161 B
C
14 lines
161 B
C
/* Ncurses wrappers */
|
|
#include <ncurses.h>
|
|
|
|
void ncurs_init() {
|
|
initscr();
|
|
cbreak();
|
|
noecho();
|
|
keypad(stdscr, TRUE);
|
|
}
|
|
|
|
void ncurs_cleanup() {
|
|
endwin();
|
|
}
|