|
asn1(3) -- ASN.1 library for SNMP
|
The ASN.1 library contains routines to handle ASN.1 encoding for SNMP. It supports only the restricted form of ASN.1 as required by SNMP. There are two basic structures used throughout the library: /*... |
asprintf(3) -- formatted output conversion
|
The printf() family of functions produces output according to a format as described below. The printf() and vprintf() functions write output to stdout, the standard output stream; fprintf() and vfprin... |
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 function abort(3) is called, effectively terminat... |
assertions(3) -- assertion system
|
The REQUIRE(), ENSURE(), INSIST(), and INVARIANT() macros evaluate a boolean expression, and if it is false, they invoke the current assertion failure callback. The default callback will print a messa... |
assertion_type_to_text(3) -- assertion system
|
The REQUIRE(), ENSURE(), INSIST(), and INVARIANT() macros evaluate a boolean expression, and if it is false, they invoke the current assertion failure callback. The default callback will print a messa... |
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() and the atanf() functions compute the principal value of the arc tangent of x. For a discussion of error due to roundoff, see math(3). |
atan2(3) -- arc tangent functions of two variables
|
The atan2() and the atan2f() functions compute the principal value of the arc tangent of y/x, using the signs of both arguments to determine the quadrant of the return value. |
atan2f(3) -- arc tangent functions of two variables
|
The atan2() and the atan2f() functions compute the principal value of the arc tangent of y/x, using the signs of both arguments to determine the quadrant of the return value. |
atanf(3) -- arc tangent functions of one variable
|
The atan() and the atanf() functions compute the principal value of the arc tangent of x. For a discussion of error due to roundoff, see math(3). |
atanh(3) -- inverse hyperbolic tangent functions
|
The atanh() and the atanhf() functions compute the inverse hyperbolic tangent of the real argument x. For a discussion of error due to roundoff, see math(3). |
atanhf(3) -- inverse hyperbolic tangent functions
|
The atanh() and the atanhf() functions compute the inverse hyperbolic tangent of the real argument x. For a discussion of error due to roundoff, see math(3). |
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... |