|
copysignf(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. finite() returns the value 1 just when -infinity < x < +infinity; otherwise a zero... |
cos(3) -- cosine function
|
The cos() and cosf() functions compute the cosine of x (measured in radians). A large magnitude argument may yield a result with little or no significance. For a discussion of error due to roundoff, s... |
|
cosf(3) -- cosine function
|
The cos() and cosf() functions compute the cosine of x (measured in radians). A large magnitude argument may yield a result with little or no significance. For a discussion of error due to roundoff, s... |
cosh(3) -- hyperbolic cosine function
|
The cosh() and coshf() functions compute the hyperbolic cosine of x. |
coshf(3) -- hyperbolic cosine function
|
The cosh() and coshf() functions compute the hyperbolic cosine of x. |
creat(3) -- create a new file
|
This interface is made obsolete by: open(2). creat() is the same as: open(path, O_CREAT | O_TRUNC | O_WRONLY, mode); |
crypt(3) -- password encryption
|
The crypt() function performs password encryption. The encryption scheme used by crypt() is dependent upon the contents of the NUL-terminated string setting. If setting begins with the ``$'' charact... |
crypto(3) -- OpenSSL cryptographic library
|
|
CRYPTO_set_ex_data(3) -- internal application specific data functions
|
Several OpenSSL structures can have application specific data attached to them. These functions are used internally by OpenSSL to manipulate application specific data attached to a specific structure.... |
ctermid(3) -- generate terminal pathname
|
The ctermid() function generates a string, that, when used as a pathname, refers to the current controlling terminal of the calling process. If buf is the NULL pointer, a pointer to a static area is r... |
ctime(3) -- convert date and time to ASCII
|
ctime() converts a long integer, pointed to by clock, representing the time in seconds since 00:00:00 UTC, 1970-01-01, and returns a pointer to a 26-character string of the form Thu Nov 24 18:22:48 19... |
ctime_r(3) -- convert date and time to ASCII
|
ctime() converts a long integer, pointed to by clock, representing the time in seconds since 00:00:00 UTC, 1970-01-01, and returns a pointer to a 26-character string of the form Thu Nov 24 18:22:48 19... |
ctype(3) -- character classification macros
|
The above macros perform character tests and conversions on the integer c. See the specific manual pages for more information. |
curses(3) -- screen functions with ``optimal'' cursor motion
|
These routines give the user a method of updating screens with reasonable optimization. They keep an image of the current screen, and the user sets up an image of a new one. Then the refresh() tells t... |
cuserid(3) -- get user name
|
This interface is available from the compatibility library, libcompat and has been obsoleted by getlogin(2) The cuserid() function returns a character string representation of the user name associated... |