
3. Mathematics ( math.h )
--------------------------------------------------------------------------
Name Function
--------------------------------------------------------------------------
3.1 acos Calculate the arc cosine value.
3.2 asin Calculate the arc sine value.
3.3 atan Calculate the arc tangent value.
3.4 atan2 Calculate the arc tangent value.
3.5 ceil Calculate the smallest integer value.
3.6 cos Calculate the cosine value.
3.7 cosh Calculate the hyperbolic cosine value.
3.8 exp Calculate the exponential function.
3.9 fabs Calculate the absolute value.
3.10 floor Calculate the largest integer value.
3.11 fmod Calculate the floating point remainder value.
3.12 frexp Calculate the mantissa value.
3.13 ldexp Calculate the value multiplied by the power of 2.
3.14 log Calculate the natural (base-e) logarithm value.
3.15 log10 Calculate the base-10 logarithm value.
3.16 modf Get the fractional part and the integer part.
3.17 pow Calculate the raised value.
3.18 sin Calculate the sine value.
3.19 sinh Calculate the hyperbolic sine value.
3.20 sqrt Calculate the square root value.
3.21 tan Calculate the tangent value.
3.22 tanh Calculate the hyperbolic tangent value.
--------------------------------------------------------------------------
4. Non-local jumps ( setjmp.h )
--------------------------------------------------------------------------
Name Function
--------------------------------------------------------------------------
4.1 setjmp Save current environment for non-local jump.
4.2 longjmp Execute a non-local jump.
--------------------------------------------------------------------------
5. Variable arguments ( stdarg.h )
--------------------------------------------------------------------------
Name Function
--------------------------------------------------------------------------
5.1 va_start Initialize arg_ptr.
5.2 va_arg Get a next argument.
5.3 va_end Reset arg_ptr.
--------------------------------------------------------------------------