United States-English |
|
|
HP-UX Reference > Ttrunc(3M)HP-UX 11i Version 3: February 2007 |
|
NAMEtrunc(), truncf(), truncl(), truncw(), truncq() — truncation functions DESCRIPTIONThe trunc() function rounds its argument to the integral value, in floating-point format, nearest to but no larger in magnitude than the argument. Integrity Server Onlytruncf() is a float version of trunc(); it takes a float argument and returns a float result. truncl() is a long double version of trunc(); it takes a long double argument and returns a long double result. truncw() is an extended version of trunc(); it takes an extended argument and returns an extended result. truncq() is equivalent to truncl() on HP-UX systems. USAGETo use these functions, compile either with the default -Ae option or with the -Aa and -D_HPUX_SOURCE options. To use (for Integrity servers) truncw() or truncq(), compile also with the -fpwidetypes option. To use these functions, make sure your program includes <math.h>. Link in the math library by specifying -lm on the compiler or linker command line. For more information, see the HP-UX floating-point guide for HP Integrity servers at the following site: http://www.hp.com/go/fp. RETURN VALUEIf x is ±INFINITY or ±zero, trunc() returns x. If x is NaN, trunc() returns NaN. trunc() may raise the inexact exception if x is non-integral and finite. SEE ALSOceil(3M), floor(3M), fabs(3M), fmod(3M), fegetround(3M), fesetround(3M), lrint(3M), llrint(3M), lround(3M), llround(3M), rint(3M), round(3M), math(5), fenv(5). |
Printable version | ||
|