|
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... |
cbrtf(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... |
ceil(3) -- round to smallest integral value greater than or equal to x
|
The ceil() function returns the smallest integral value greater than or equal to x. The ceilf() function is a single precision version of ceil(). |
ceilf(3) -- round to smallest integral value greater than or equal to x
|
The ceil() function returns the smallest integral value greater than or equal to x. The ceilf() function is a single precision version of ceil(). |
cfgetispeed(3) -- manipulating the termios structure
|
The cfmakeraw(), tcgetattr(), and tcsetattr() functions are provided for getting and setting the termios structure. The cfgetispeed(), cfsetispeed(), cfgetospeed(), cfsetospeed(), and cfsetspeed() fun... |