*** UNIX MANUAL PAGE BROWSER ***

A Nergahak database for man pages research.

Navigation

Directory Browser

1Browse 4.4BSD4.4BSD
1Browse Digital UNIXDigital UNIX 4.0e
1Browse FreeBSDFreeBSD 14.3
1Browse MINIXMINIX 3.4.0rc6-d5e4fc0
1Browse NetBSDNetBSD 10.1
1Browse OpenBSDOpenBSD 7.7
1Browse UNIX v7Version 7 UNIX
1Browse UNIX v10Version 10 UNIX

Manual Page Search

Manual Page Result

0 Command: fpclassify | Section: 3 | Source: OpenBSD | File: fpclassify.3
FPCLASSIFY(3) FreeBSD Library Functions Manual FPCLASSIFY(3) NAME fpclassify, isfinite, isinf, isnan, isnormal, signbit, finite, finitef, isinff, isnanf - classify a floating-point number SYNOPSIS #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); int signbit(real-floating x); DESCRIPTION The fpclassify() macro takes an argument of x and returns one of the following manifest constants: FP_INFINITE Indicates that x is an infinite number. FP_NAN Indicates that x is not a number (NaN). FP_NORMAL Indicates that x is a normalized number. FP_SUBNORMAL Indicates that x is a denormalized number. FP_ZERO Indicates that x is zero (0 or -0). 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 signbit() macro takes an argument of x and returns non-zero if the value of its sign is negative, otherwise 0. SEE ALSO isgreater(3) STANDARDS The fpclassify(), isfinite(), isinf(), isnan(), isnormal(), and signbit() macros conform to ISO/IEC 9899:1999 ("ISO C99"). The symbols isinff(), and isnanf() are provided as compatibility aliases to isinf(), and isnan(), respectively, and their uses are deprecated. Similarly, finite() and finitef() are deprecated versions of isfinite(). HISTORY The fpclassify(), isfinite(), isinf(), isnan(), isnormal(), and signbit() macros were added in OpenBSD 4.4. 3BSD introduced isinf() and isnan() functions, which accepted double arguments; these have been superseded by the macros described above. FreeBSD 14.1-RELEASE-p8 March 10, 2016 FreeBSD 14.1-RELEASE-p8

Navigation Options