waddstr
return (waddstr(stdscr, str));
return (waddstr(stdscr, str));
return (wmove(stdscr, y, x) == ERR ? ERR : waddstr(stdscr, str));
return (wmove(win, y, x) == ERR ? ERR : waddstr(win, str));
rv = waddstr(win, buffer);
(void) waddstr(Win(m), Mark(m));
(void) waddstr(Win(m), Description(k));
extern int waddstr(WINDOW *, const char *);
#define addstr(s) waddstr(stdscr,s)
#define mvwaddstr(w,y,x,s) (wmove(w,y,x)?ERR:waddstr(w,s))
(waddstr)(w, str)
extern int waddstr(WINDOW *, const char *);
#define addstr(s) waddstr(stdscr, s)
(wmove(__w1 = (w), y, x) ? (s, ERR) : waddstr(__w1, s))
#define addstr(str) VOID(waddstr(stdscr, str))
ERR:waddstr(win, str))
extern int waddstr(WINDOW *, char *);
return (waddstr(win, buf));