|
buffer(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 ... |
BUF_MEM_free(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 ... |
|
BUF_MEM_grow(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 ... |
BUF_MEM_new(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 ... |
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 ... |
bzero(3) -- Perform memory operations
|
The bcopy(), bcmp(), and bzero() functions operate on variable length strings of bytes. Unlike the string functions, they do not check for null bytes. The bcopy() function copies the value of the leng... |
cabs(3) -- Calculate Euclidean distance and absolute value
|
The hypot(), hypotf(), and hypotl() functions compute the length of the hypotenuse of a right triangle, where x and y represent the perpendicular sides of the triangle. The hypot(x,y), hypotf(x,y) and... |
calloc(3) -- Provide a memory allocator
|
The malloc() and free() functions provide a simple, general-purpose memory allocation package. Note See also the subsection "Using the densemalloc Library" for information on using libdensemalloc to... |
callrpc(3) -- library routines for client ONC 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
|
The Curses library includes routines that manipulate color-on-color alphanumeric terminals. To use these routines, applications must call start_color, usually right after initscr. Colors are always us... |
catclose(3) -- Close a specified message catalog
|
The catclose() function closes the message catalog identified by cat_descriptor. Before exiting, programs should close any message catalogs they have opened. If a program accesses several message cata... |
catgets(3) -- Retrieve a message from a catalog
|
The catgets() function retrieves a message from a catalog after a successful call to the catopen() function. If the catgets() function finds the specified message, a pointer to the message text is ret... |
catopen(3) -- Opening a message catalog
|
The catopen() function opens a specified message catalog and returns a catalog descriptor that is used by the catgets() function to retrieve messages from the catalog. The name parameter specifies the... |
cbreak(3) -- Curses
|
The cbreak and nocbreak routines put the terminal into and out of cbreak mode, respectively. In this mode, characters typed by the user are immediately available to the program, and erase/kill charact... |
cbrt(3) -- Square and cube root functions
|
sqrt(), sqrtf(), and sqrtl() compute the rounded square root of x. For platforms supporting a signed zero, sqrt (-0) = 0. cbrt(), cbrtf(), and cbrtl() return the rounded cube root of y. --------------... |