|
asprintf(3) -- formatted output conversion
|
The printf() family of functions produce output according to the given format as described below. This format may contain ``conversion specifiers''; the results of such conversions, if any, depend o... |
assert(3) -- expression verification macro
|
The assert() macro tests the given expression and if it is false, the calling process is terminated. A diagnostic message is written to stderr and the abort(3) function is called, effectively terminat... |
assume_default_colors(3) -- use terminal's default colors
|
The use_default_colors() and assume_default_colors() functions are extensions to the curses library. They are used with terminals that support ISO 6429 color, or equivalent. These terminals allow the ... |
atan(3) -- arc tangent functions of one variable
|
The atan() function computes the principal value of the arc tangent of x in the range [-pi/2, +pi/2]. The atanf() function is a single precision version of atan(). |
atan2(3) -- arc tangent functions of two variables
|
The atan2() function computes the principal value of the arc tangent of y/x, using the signs of both arguments to determine the quadrant of the return value. The atan2f() function is a single precisio... |
atan2f(3) -- arc tangent functions of two variables
|
The atan2() function computes the principal value of the arc tangent of y/x, using the signs of both arguments to determine the quadrant of the return value. The atan2f() function is a single precisio... |
atanf(3) -- arc tangent functions of one variable
|
The atan() function computes the principal value of the arc tangent of x in the range [-pi/2, +pi/2]. The atanf() function is a single precision version of atan(). |
atanh(3) -- inverse hyperbolic tangent functions
|
The atanh() function computes the inverse hyperbolic tangent of the real argument x. The atanhf() function is a single precision version of atanh(). |
atanhf(3) -- inverse hyperbolic tangent functions
|
The atanh() function computes the inverse hyperbolic tangent of the real argument x. The atanhf() function is a single precision version of atanh(). |
atexit(3) -- register a function to be called on exit
|
The atexit() function registers the given function to be called at program exit, whether via exit(3) or via return from the program's main(). Functions so registered are called in reverse order; no a... |
atob8(3) -- S/Key library functions
|
These functions implement the S/Key one time password authentication mechanism. The atob8() function converts the 16-byte hex string in to an 8-byte binary array stored in out. The atob8() function re... |
atof(3) -- convert ASCII string to double
|
The atof() function converts the initial portion of the string pointed to by nptr to double representation. It is equivalent to: strtod(nptr, (char **)NULL); |
atoi(3) -- convert ASCII string to integer
|
The atoi() function converts the initial portion of the string pointed to by nptr to integer representation. It is equivalent to: (int)strtol(nptr, (char **)NULL, 10); |