scons_gd/scons/test/D/HSTeoh/LinkingProblem/ncurs_impl.c
2022-10-15 16:06:26 +02:00

14 lines
161 B
C

/* Ncurses wrappers */
#include <ncurses.h>
void ncurs_init() {
initscr();
cbreak();
noecho();
keypad(stdscr, TRUE);
}
void ncurs_cleanup() {
endwin();
}