|
|
pnoutrefresh(3) -- create and display curses pads
|
|
The newpad routine creates and returns a pointer to a new pad data structure with the given number of lines, nlines, and columns, ncols. A pad is like a window, except that it is not restricted by the... |
|
popen(3) -- process I/O
|
|
The popen() function ``opens'' a process by creating a pipe, forking, and invoking the shell. Since a pipe is by definition unidirectional, the type argument may specify only reading or writing, not... |
|
posix1e(3) -- introduction to the POSIX.1e security API
|
|
The IEEE POSIX.1e specification never left draft form, but the interfaces it describes are now widely used despite inherent limitations. Currently, only a few of the interfaces and features are implem... |
|
posix2time(3) -- convert seconds since the Epoch
|
|
IEEE Standard 1003.1 (POSIX) legislates that a time_t value of 536457599 shall correspond to "Wed Dec 31 23:59:59 UTC 1986." This effectively implies that a POSIX time_t cannot include leap seconds ... |
|
post_form(3) -- write or erase forms from associated subwindows
|
|
The function post_form displays a form to its associated subwindow. To trigger physical display of the subwindow, use refresh or some equivalent curses routine (the implicit doupdate triggered by an c... |
|
post_menu(3) -- write or erase menus from associated subwindows
|
|
The function post_menu displays a menu to its associated subwindow. To trigger physical display of the subwindow, use refresh or some equivalent curses routine (the implicit doupdate triggered by an c... |
|
pos_form_cursor(3) -- position a form window cursor
|
|
The function pos_form_cursor restores the cursor to the position required for the forms driver to continue processing requests. This is useful after curses routines have been called to do screen-paint... |
|
pos_menu_cursor(3) -- position a menu's cursor
|
|
The function pos_menu_cursor restores the cursor to the current position associated with the menu's selected item. This is useful after curses routines have been called to do screen-painting in respo... |
|
pow(3) -- exponential, logarithm, power functions
|
|
The exp() function computes the exponential value of the given argument x. The expf() function is a single precision version of exp(). The expm1() function computes the value exp(x)-1 accurately even ... |
|
powf(3) -- exponential, logarithm, power functions
|
|
The exp() function computes the exponential value of the given argument x. The expf() function is a single precision version of exp(). The expm1() function computes the value exp(x)-1 accurately even ... |
|
prefresh(3) -- create and display curses pads
|
|
The newpad routine creates and returns a pointer to a new pad data structure with the given number of lines, nlines, and columns, ncols. A pad is like a window, except that it is not restricted by the... |
|
printf(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... |
|
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 ... |