vwprintw - print formatted output in window (TO BE WITHDRAWN)
#include <varargs.h> #include <curses.h> int vwprintw(WINDOW *, char *, va_list varglist);
The vwprintw() function achieves the same effect as wprintw() using a variable argument list. The third argument is a va_list, as defined in <varargs.h>.
Upon successful completion, vwprintw() returns OK. Otherwise, it returns ERR.
No errors are defined.
The vwprintw() function is deprecated because it relies on deprecated functions in the XSH specification. The vw_printw() function is preferred. The use of the vwprintw() and the vw_printw() functions in the same file will not work, due to the requirement to include varargs.h and stdarg.h which both contain definitions of va_list.
mvprintw(), fprintf() (in the XSH specification), vw_printw(), <curses.h>, <varargs.h> (in the XSH specification).