Query: isinf
OS: netbsd
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
ISINF(3) BSD Library Functions Manual ISINF(3)NAMEisinf -- test for infinityLIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <math.h> int isinf(real-floating x);DESCRIPTIONThe isinf() macro determines whether its argument x is an infinity (positive or negative). An argument represented in a format wider than its semantic type is converted to its semantic type first. The determination is then based on the type of the argument. IEEE 754 It is determined whether the value of x is an infinity. VAX Infinities are not supported.RETURN VALUESThe isinf() macro returns a non-zero value if the value of x is an infinity. Otherwise 0 is returned.SEE ALSOfpclassify(3), isfinite(3), isinff(3), isnan(3), isnanf(3), isnormal(3), math(3), signbit(3) IEEE Standard for Binary Floating-Point Arithmetic, Std 754-1985, ANSI.STANDARDSThe isinf() macro conforms to ISO/IEC 9899:1999 (``ISO C99'').BSDMarch 5, 2004 BSD