fpclassify, isfinite, isinf, isnan, isnormal(3) | classify a floating-point number |
finite, fpclassify, isfinite, isinf, isnan, isnormal(3) | classify a floating-point number |
finitef, fpclassify, isfinite, isinf, isnan, isnormal(3) | classify a floating-point number |
isfinite, fpclassify, isinf, isnan, isnormal(3) | classify a floating-point number |
isinf, fpclassify, isfinite, isnan, isnormal(3) | classify a floating-point number |
isnan, fpclassify, isfinite, isinf, isnormal(3) | classify a floating-point number |
isnormal, fpclassify, isfinite, isinf, isnan(3) | classify a floating-point number |
FPCLASSIFY(3) | MidnightBSD Library Functions Manual | FPCLASSIFY(3) |
fpclassify
,
isfinite
, isinf
,
isnan
, isnormal
—
classify a floating-point number
Math Library (libm, -lm)
#include
<math.h>
int
fpclassify
(real-floating
x);
int
isfinite
(real-floating
x);
int
isinf
(real-floating
x);
int
isnan
(real-floating
x);
int
isnormal
(real-floating
x);
The
fpclassify
()
macro takes an argument of x and returns one of the
following manifest constants.
FP_INFINITE
FP_NAN
FP_NORMAL
FP_SUBNORMAL
FP_ZERO
The
isfinite
()
macro returns a non-zero value if and only if its argument has a finite
(zero, subnormal, or normal) value. The
isinf
(),
isnan
(), and
isnormal
()
macros return non-zero if and only if x is an
infinity, NaN, or a non-zero normalized number, respectively.
The symbol
isnanf
() is
provided as an alias to
isnan
()
for compatibility, and its use is deprecated. Similarly,
finite
()
and
finitef
()
are deprecated versions of isfinite
().
The fpclassify
(),
isfinite
(), isinf
(),
isnan
(), and isnormal
()
macros conform to ISO/IEC 9899:1999
(“ISO C99”).
The fpclassify
(),
isfinite
(), isinf
(),
isnan
(), and isnormal
()
macros were added in FreeBSD 5.1.
3BSD introduced isinf
() and
isnan
() functions, which accepted
double arguments; these have been superseded by the
macros described above.
January 26, 2005 | midnightbsd-3.1 |