Home | History | Annotate | Download | only in include

Lines Matching defs:mvwaddstr

666 extern NCURSES_EXPORT(int) mvwaddstr (WINDOW *, int, int, const char *);	/* generated */
1217 #define mvwaddstr(win,y,x,str) (wmove(win,y,x) == ERR ? ERR : waddnstr(win,str,-1))
1238 #define mvaddstr(y,x,str) mvwaddstr(stdscr,y,x,str)