Curses Library Functions cursprintw(3CURSES)
NAME
cursprintw, printw, wprintw, mvprintw, mvwprintw, vwprintw
- print formatted output in curses windows
SYNOPSIS
cc [ flag ... ] file ... -lcurses [ library ... ]
#include
int printw(char *fmt, /* arg */ ... );
int wprintw(WINDOW *win, char *fmt, /* arg */ ... );
int mvprintw(int y, int x, char *fmt, /* arg */ ... );
int mvwprintw(WINDOW *win, int y, int x, char *fmt, /* arg */... );
#include
int vwprintw(WINDOW *win, char *fmt, /* varglist */ ... );
DESCRIPTION
The printw(), wprintw(), mvprintw(), and mvwprintw() rou-
tines are analogous to printf() (see printf(3C) ). In
effect, the string that would be output by printf() is out-
put instead as though waddstr() were used on the given win-
dow.
The vwprintw() routine is analogous to vprintf() (see
vprintf(3C)) and performs a wprintw() using a variable argu-
ment list. The third argument is a valist, a pointer to a
list of arguments, as defined in .
RETURN VALUES
All routines return the integer ER upon failure and an
integer value other than ER upon successful completion.
ATRIBUTES
See attributes(5) for descriptions of the following attri-
butes:
SunOS 5.11 Last change: 31 Dec 1996 1
Curses Library Functions cursprintw(3CURSES)
ATRIBUTE TYPE ATRIBUTE VALUE
MT-Level Unsafe
SEE ALSO
curses(3CURSES), printf(3C), vprintf(3C), attributes(5)
NOTES
The header automatically includes the headers
and .
SunOS 5.11 Last change: 31 Dec 1996 2
|