|
form_userptr(3) -- associate application data with a form item
|
Every form and every form item has a field that can be used to hold application-specific data (that is, the formdriver code leaves it alone). These functions get and set the form user pointer field. |
form_win(3) -- make and break form window and subwindow associations
|
Every form has an associated pair of curses windows. The form window displays any title and border associated with the window; the form subwindow displays the items of the form that are currently avai... |
fparseln(3) -- return the next logical line from a stream
|
The fparseln() function returns a pointer to the next logical line from the stream referenced by stream. This string is null terminated and dynamically allocated on each invocation. It is the responsi... |
fpgetmask(3) -- IEEE FP mode control
|
A rounding mode is one of FP_RZ, FP_RM, FP_RN, or FP_RP, for rounding towards zero, rounding (Minus infinity) down, rounding to nearest, and rounding (Plus infinity) up. The default mode is FP_RN. An ... |
fpgetround(3) -- IEEE FP mode control
|
A rounding mode is one of FP_RZ, FP_RM, FP_RN, or FP_RP, for rounding towards zero, rounding (Minus infinity) down, rounding to nearest, and rounding (Plus infinity) up. The default mode is FP_RN. An ... |
fpgetsticky(3) -- IEEE FP mode control
|
A rounding mode is one of FP_RZ, FP_RM, FP_RN, or FP_RP, for rounding towards zero, rounding (Minus infinity) down, rounding to nearest, and rounding (Plus infinity) up. The default mode is FP_RN. An ... |
fprintf(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... |
fpsetmask(3) -- IEEE FP mode control
|
A rounding mode is one of FP_RZ, FP_RM, FP_RN, or FP_RP, for rounding towards zero, rounding (Minus infinity) down, rounding to nearest, and rounding (Plus infinity) up. The default mode is FP_RN. An ... |
fpsetround(3) -- IEEE FP mode control
|
A rounding mode is one of FP_RZ, FP_RM, FP_RN, or FP_RP, for rounding towards zero, rounding (Minus infinity) down, rounding to nearest, and rounding (Plus infinity) up. The default mode is FP_RN. An ... |
fpsetsticky(3) -- IEEE FP mode control
|
A rounding mode is one of FP_RZ, FP_RM, FP_RN, or FP_RP, for rounding towards zero, rounding (Minus infinity) down, rounding to nearest, and rounding (Plus infinity) up. The default mode is FP_RN. An ... |
fpurge(3) -- flush a stream
|
The function fflush() forces a write of all buffered data for the given output or update stream via the stream's underlying write function. The open status of the stream is unaffected. If the stream ... |
fputc(3) -- output a character or word to a stream
|
The fputc() function writes the character c (converted to an unsigned char) to the output stream pointed to by stream. putc() acts essentially identically to fputc(), but is a macro that expands in-li... |
fputs(3) -- output a line to a stream
|
The function fputs() writes the string pointed to by str to the stream pointed to by stream. The function puts() writes the string str, and a terminating newline character, to the stream stdout. |