|
BUF_strdup(3) -- simple character arrays structure
|
The buffer library handles simple character arrays. Buffers are used for various purposes in the library, most notably memory BIOs. The library uses the BUF_MEM structure defined in buffer.h: typedef ... |
byteorder(3) -- convert values between different byte orderings
|
These routines convert 16, 32 and 64-bit quantities between different byte orderings. The ``swap'' functions reverse the byte ordering of the given quantity, the others converts either from/to the n... |
bzero(3) -- write zeroes to a byte string
|
The bzero() function writes len zero bytes to the string b. If len is zero, bzero() does nothing. |
cabs(3) -- Euclidean distance and complex absolute value functions
|
The hypot() and cabs() functions compute the sqrt(x*x+y*y) in such a way that underflow will not happen, and overflow occurs only if the final result deserves it. The hypotf() and cabsf() functions ar... |
cabsf(3) -- Euclidean distance and complex absolute value functions
|
The hypot() and cabs() functions compute the sqrt(x*x+y*y) in such a way that underflow will not happen, and overflow occurs only if the final result deserves it. The hypotf() and cabsf() functions ar... |
calloc(3) -- memory allocation and deallocation
|
The malloc() function allocates uninitialized space for an object whose size is specified by size. The malloc() function maintains multiple lists of free blocks according to size, allocating space fro... |
callrpc(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... |
can_change_color(3) -- curses color manipulation routines
|
Overview curses support color attributes on terminals with that capability. To use these routines start_color must be called, usually right after initscr. Colors are always used in pairs (referred to ... |
catclose(3) -- close message catalog
|
The catclose() function closes the message catalog specified by the argument catd. |
catgets(3) -- retrieve string from message catalog
|
The catgets() function attempts to retrieve message msg_id of set set_id from the message catalog referenced by the descriptor catd. The argument s points to a default message which is returned if the... |
catopen(3) -- open message catalog
|
The catopen() function opens the message catalog specified by name and returns a message catalog descriptor. If name contains a `/', then name specifies the full pathname for the message catalog, oth... |
cbreak(3) -- curses input options
|
Normally, the tty driver buffers typed characters until a newline or carriage return is typed. The cbreak routine disables line buffering and erase/kill character-processing (interrupt and flow contro... |
cbrt(3) -- cube root and square root functions
|
The cbrt() function computes the cube root of x. The cbrtf() function is a single precision version of cbrt(). The sqrt() function computes the non-negative square root of x. The sqrtf() function is a... |