addch
extern void addch();
addch(t, keylet(t, nref));
addch (c | console_current_color);
addch (c);
extern int addch(chtype);
#define mvaddch(y,x,ch) (move(y,x)?ERR:addch(ch))
(addch)(chtype ch)
extern int addch(chtype);
#define mvaddch(y, x, ch) (move(y, x) ? ((ch), ERR) : addch(ch))
(void) addch('\\'); /* display the quote character */
(void) addch('>');
(void) addch(' ');
(void) addch('\n');
(void) addch('>');
(void) addch(' ');
(void) addch('\n');
(void) addch((unsigned)firstchar); /* display it */
(void) addch('\b');
(void) addch(' ');
(void) addch('\b');
(void) addch((unsigned)c); /* display it */