|
fmodf(3) -- floating-point remainder functions
|
The fmod() function computes the floating-point remainder of x/ y. The fmodf() function is a single precision version of fmod(). |
fmt_scaled(3) -- handle numbers with a human-readable scale
|
The scan_scaled() function scans the given number and looks for a terminal scale multiplier of B, K, M, G, T, P or E (in either upper or lower case) for Byte, Kilobyte, Megabyte, Gigabyte, Terabyte, P... |
fnmatch(3) -- match filename or pathname using shell globbing rules
|
The fnmatch() function matches patterns according to the globbing rules used by the shell. It checks the string specified by the string argument to see if it matches the pattern specified by the patte... |
fopen(3) -- stream open functions
|
The fopen() function opens the file whose name is the string pointed to by path and associates a stream with it. The argument mode points to a string beginning with one of the following sequences (add... |
forkpty(3) -- tty utility functions
|
The openpty(), login_tty(), and forkpty() functions perform manipulations on ttys and pseudo-ttys. The openpty() function finds an available pseudo-tty and returns file descriptors for the master and ... |
form(3) -- curses extension for programming forms
|
The form library provides terminal-independent facilities for composing form screens on character-cell terminals. The library includes: field routines, which create and modify form fields; and form ro... |
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... |
form_data(3) -- test for off-screen data in given forms
|
The function data_ahead tests whether there is off-screen data ahead in the given form. It returns TRUE (1) or FALSE (0). The function data_behind tests whether there is off-screen data behind in the ... |
form_driver(3) -- command-processing loop of the form system
|
Once a form has been posted (displayed), you should funnel input events to it through form_driver. This routine has two major input cases; either the input is a form navigation request or it's a prin... |
form_field(3) -- make and break connections between fields and forms
|
The function set_form_fields changes the field pointer array of the given form. The array must be terminated by a NULL. The function form_fields returns the field array of the given form. The function... |
form_fields(3) -- make and break connections between fields and forms
|
The function set_form_fields changes the field pointer array of the given form. The array must be terminated by a NULL. The function form_fields returns the field array of the given form. The function... |
form_fieldtype(3) -- define validation-field types
|
The function new_fieldtype creates a new field type usable for data validation. You supply it with field_check, a predicate to check the validity of an entered data string whenever the user attempts t... |
form_field_attributes(3) -- color and attribute control for form fields
|
The function set_field_fore sets the foreground attribute of field. This is the highlight used to display the field contents. The function field_fore returns the foreground attribute. The default is A... |