|
vprintf(3) -- formatted output conversion
|
The printf() family of functions produce output according to the given format as described below. This format may contain ``conversion specifiers''; the results of such conversions, if any, depend o... |
vscanf(3) -- input format conversion
|
The scanf() family of functions read input according to the given format as described below. This format may contain ``conversion specifiers''; the results of such conversions, if any, are stored th... |
|
vsnprintf(3) -- formatted output conversion
|
The printf() family of functions produce output according to the given format as described below. This format may contain ``conversion specifiers''; the results of such conversions, if any, depend o... |
vsprintf(3) -- formatted output conversion
|
The printf() family of functions produce output according to the given format as described below. This format may contain ``conversion specifiers''; the results of such conversions, if any, depend o... |
vsscanf(3) -- input format conversion
|
The scanf() family of functions read input according to the given format as described below. This format may contain ``conversion specifiers''; the results of such conversions, if any, are stored th... |
vsyslog(3) -- control system log
|
The syslog() function writes message to the system message logger. The message is then written to the system console, log files, logged-in users, or forwarded to other machines as appropriate (see sys... |
vsyslog_r(3) -- control system log
|
The syslog() function writes message to the system message logger. The message is then written to the system console, log files, logged-in users, or forwarded to other machines as appropriate (see sys... |
vwarn(3) -- formatted error messages
|
The err() and warn() family of functions display a formatted error message on the standard error output. In all cases, the last component of the program name, followed by a colon (`:') character and ... |
vwarnx(3) -- formatted error messages
|
The err() and warn() family of functions display a formatted error message on the standard error output. In all cases, the last component of the program name, followed by a colon (`:') character and ... |
vwprintw(3) -- print formatted output in curses windows
|
The printw, wprintw, mvprintw and mvwprintw routines are analogous to printf [see printf(3)]. In effect, the string that would be output by printf is output instead as though waddstr were used on the ... |
vwscanw(3) -- convert formatted input from a curses window
|
The scanw, wscanw and mvscanw routines are analogous to scanf [see scanf(3)]. The effect of these routines is as though wgetstr were called on the window, and the resulting line used as input for ssca... |
vw_printw(3) -- print formatted output in curses windows
|
The printw, wprintw, mvprintw and mvwprintw routines are analogous to printf [see printf(3)]. In effect, the string that would be output by printf is output instead as though waddstr were used on the ... |
vw_scanw(3) -- convert formatted input from a curses window
|
The scanw, wscanw and mvscanw routines are analogous to scanf [see scanf(3)]. The effect of these routines is as though wgetstr were called on the window, and the resulting line used as input for ssca... |
waddch(3) -- add a character (with attributes) to a curses window, then advance the cursor
|
The addch, waddch, mvaddch and mvwaddch routines put the character ch into the given window at its current window position, which is then advanced. They are analogous to putchar in stdio(3). If the ad... |
waddchnstr(3) -- add a string of characters (and attributes) to a curses window
|
These routines copy chstr into the window image structure at and after the current cursor position. The four routines with n as the last argument copy at most n elements, but no more than will fit on ... |