|
redrawwin(3) -- refresh curses windows and lines
|
The refresh and wrefresh routines (or wnoutrefresh and doupdate) must be called to get actual output to the terminal, as other routines merely manipulate data structures. The routine wrefresh copies t... |
refresh(3) -- refresh curses windows and lines
|
The refresh and wrefresh routines (or wnoutrefresh and doupdate) must be called to get actual output to the terminal, as other routines merely manipulate data structures. The routine wrefresh copies t... |
|
regcomp(3) -- regular expression routines
|
These routines implement IEEE Std 1003.2 (``POSIX.2'') regular expressions (``REs''); see re_format(7). regcomp() compiles an RE written as a string into an internal form, regexec() matches that i... |
regerror(3) -- regular expression routines
|
These routines implement IEEE Std 1003.2 (``POSIX.2'') regular expressions (``REs''); see re_format(7). regcomp() compiles an RE written as a string into an internal form, regexec() matches that i... |
regex(3) -- regular expression routines
|
These routines implement IEEE Std 1003.2 (``POSIX.2'') regular expressions (``REs''); see re_format(7). regcomp() compiles an RE written as a string into an internal form, regexec() matches that i... |
regexec(3) -- regular expression routines
|
These routines implement IEEE Std 1003.2 (``POSIX.2'') regular expressions (``REs''); see re_format(7). regcomp() compiles an RE written as a string into an internal form, regexec() matches that i... |
regexp(3) -- obsolete regular expression routines
|
This interface is made obsolete by regex(3). It is available from the compatibility library, libcompat. The regcomp(), regexec(), regsub(), and regerror() functions implement egrep(1)-style regular ex... |
regfree(3) -- regular expression routines
|
These routines implement IEEE Std 1003.2 (``POSIX.2'') regular expressions (``REs''); see re_format(7). regcomp() compiles an RE written as a string into an internal form, regexec() matches that i... |
registerrpc(3) -- library routines for remote procedure calls
|
These routines allow C programs to make procedure calls on other machines across the network. First, the client calls a procedure to send a data packet to the server. Upon receipt of the packet, the s... |
regsub(3) -- regular expression routines
|
These routines implement IEEE Std 1003.2 (``POSIX.2'') regular expressions (``REs''); see re_format(7). regcomp() compiles an RE written as a string into an internal form, regexec() matches that i... |
remainder(3) -- functions for IEEE arithmetic
|
These functions are required or recommended by IEEE Std 754-1985. copysign() returns x with its sign changed to y's. The copysignf() function is a single precision version of copysign(). finite() ret... |
remainderf(3) -- functions for IEEE arithmetic
|
These functions are required or recommended by IEEE Std 754-1985. copysign() returns x with its sign changed to y's. The copysignf() function is a single precision version of copysign(). finite() ret... |
remove(3) -- remove a file or directory
|
The remove() function removes the file or directory specified by path. If path specifies a directory, remove(path) is the equivalent of rmdir(path). Otherwise, it is the equivalent of unlink(path). |
remque(3) -- insert/remove element from a queue
|
These interfaces have been superceded by the queue(3) macros and are pro- vided for compatibility with legacy code. insque() and remque() manipulate queues built from doubly linked lists. The queue ca... |
replace_panel(3) -- panel stack extension for curses
|
Panels are curses(3) windows with the added feature of depth. Panel functions allow the use of stacked windows and ensure the proper portions of each window and the curses stdscr window are hidden or ... |