wgetch
c = wgetch(stdscr);
return (wgetch(stdscr));
return (wmove(stdscr, y, x) == ERR ? ERR : wgetch(stdscr));
return (wmove(win, y, x) == ERR ? ERR : wgetch(win));
ch = wgetch(win);
if ((c = wgetch(win)) == ERR)
if ((c = wgetch(win)) == ERR)
extern int wgetch(WINDOW *);
#define getch() wgetch(stdscr)
#define mvwgetch(w,y,x) (wmove(w,y,x)?ERR:wgetch(w))
value = wgetch(stdscr);
value = wgetch(stdscr);
value = wgetch(w);
wio->get = (int (*)(void *)) wgetch;
if ((ch = wgetch(w)) < __KEY_BASE) {
extern int wgetch(WINDOW *);
#define getch() wgetch(stdscr)
(wmove(__w1 = (w), y, x) ? ERR : wgetch(__w1))
value = wgetch(stdscr);
value = wgetch(stdscr);
value = wgetch(w);
wio->get = (int (*)(void *)) wgetch;
if ((ch = wgetch(w)) == ERR) {
#define getch() VOID(wgetch(stdscr))
#define mvwgetch(win, y, x) VOID(wmove(win, y, x) == ERR?ERR:wgetch(win))
extern int wgetch(WINDOW *);
while ((*str = wgetch(win)) != ERR && *str != '\n')