wgetch
while ((c = wgetch(scroll_w)) == EOF)
while ((c = wgetch(scroll_w)) == EOF)
#define getch() wgetch(stdscr)
(wmove(w, y, x) == ERR ? ERR : wgetch(w))
int wgetch(WINDOW *);
return wgetch(stdscr);
return wgetch(win);
while ((c = wgetch(win)) != ERR && c != '\n' && c != '\r') {
while (wgetch(win) != ERR)
report_int(wgetch(win));