ncurses vars and funcs: 'man 3 <name>'
-----------------------

COLS		global X val
LINES		global Y val
stdscr		pointer to current screen: WINDOW   *stdscr;

echo		turn on char echo: int echo(void);
endwin		exit curses mode: int endwin(void);
initscr		init & clear window: WINDOW *initscr(void);
keypad		togl wgetch Func key interpreter: int keypad(WINDOW *win, bool bf);
nodelay		set getch blocking, false=wait: int nodelay(WINDOW *win, bool bf);
noecho		turn off char echo: int noecho(void);
noraw		turn off raw mode: int noraw(void);
raw			turn on raw mode: int raw(void);
scrollok	enable window scrolling: int scrollok(WINDOW *win, bool bf);

Specific Window functions:
--------------------------
waddch		put char with wrap to window: int waddch(WINDOW *win, chtype ch);
waddnstr	write 0-term str to window: int waddstr(WINDOW *win, const char *str);
wattr_off	turn off attribute: int wattr_off(WINDOW *win, attr_t attrs, void *opts);
wattr_on	turn on attribute: int wattr_on(WINDOW *win, attr_t attrs, void *opts);
wclear		clear specified window: int wclear(WINDOW *win);
wclrtobot	clear to end of screen: int wclrtobot(WINDOW *win);
wclrtoeol	clear to end of line: int wclrtoeol(WINDOW *win);
werase		erase specified window: int werase(WINDOW *win);
wgetch		read 1 char from specified window: int wgetch(WINDOW *win);
wgetnstr	read <= n chars from specified window: int wgetnstr(WINDOW *win, char *str, int n);
wmove		move cursor in specified window: int wmove(WINDOW *win, int y, int x);
wrefresh	write window buffer to actual display: int wrefresh(WINDOW *win);
wscrl		scroll specified window: int wscrl(WINDOW *win, int n);
