wgetstr
#define getstr(s) wgetstr(stdscr, s)
(wmove(w, y, x) == ERR ? ERR : wgetstr(w, s))
int wgetstr(WINDOW *, char *);
#define getstr(str) wgetstr(stdscr,(str))
#define mvwgetstr(win,y,x,str) (wmove((win),(y),(x)) == ERR ? ERR : wgetstr((win),(str)))
extern NCURSES_EXPORT(int) wgetstr (WINDOW *, char *); /* generated */