winch
c = winch(win);
goto winch;
winch:
winch(sig)
(void)signal(SIGWINCH, winch);
(void)signal(SIGWINCH, winch);
(void)signal(SIGWINCH, winch);
void winch();
return (winch(stdscr));
return (wmove(stdscr, y, x) == ERR ? (chtype) ERR : winch(stdscr));
return (wmove(win, y, x) == ERR ? (chtype) ERR : winch(win));
c = (int)(winch(w) & A_CHARTEXT);
extern chtype winch(WINDOW *);
#define inch() winch(stdscr)
#define mvwinch(w,y,x) (wmove(w,y,x)?ERR:winch(w))
ch = winch(stdscr);
ch = winch(stdscr);
ch = winch(w);
extern chtype winch(WINDOW *);
#define inch() winch(stdscr)
(wmove(__w1 = (w), y, x) ? ERR : winch(__w1))
ch = winch(stdscr);
ch = winch(stdscr);
ch = winch(w);
#define inch() VOID(winch(stdscr))
#define mvwinch(win, y, x) VOID(wmove(win, y, x) == ERR ? ERR : winch(win))