This manual page is for Mac OS X version 10.6.3

If you are running a different version of Mac OS X, view the documentation locally:

  • In Terminal, using the man(1) command

Reading manual pages

Manual pages are intended as a quick reference for people who already understand a technology.

  • For more information about the manual page format, see the manual page for manpages(5).

  • For more information about this technology, look for other documentation in the Apple Reference Library.

  • For general information about writing shell scripts, read Shell Scripting Primer.



FPCLASSIFY(3)                           BSD Library Functions Manual                           FPCLASSIFY(3)

NAME
     fpclassify, isfinite, isinf, isnan, isnormal -- classify a floating-point number

LIBRARY
     Math Library (libm, -lm)

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);

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, subnor-mal, subnormal,
     mal, 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.

SEE ALSO
     isgreater(3), math(3), signbit(3)

STANDARDS
     The fpclassify(), isfinite(), isinf(), isnan(), and isnormal() macros conform to ISO/IEC 9899:1999
     (``ISO C99'').

HISTORY
     3BSD introduced isinf() and isnan() functions, which accepted double arguments; these have been super-seded superseded
     seded by the macros described above.

BSD                                           December 11, 2006                                          BSD

Reporting Problems

The way to report a problem with this manual page depends on the type of problem:

Content errors
Report errors in the content of this documentation with the feedback links below.
Bug reports
Report bugs in the functionality of the described tool or API through Bug Reporter.
Formatting problems
Report formatting mistakes in the online version of these pages with the feedback links below.

Did this document help you? Yes It's good, but... Not helpful...