ISINF(3) 386BSD Programmer's Manual ISINF(3)
///.......P ? specific prior written permission. NAME
isinf, isnan - test for infinity or not-a-number (NaN)
SYNOPSIS
int
isinf(double)
int
isnan(double)
DESCRIPTION
The isninf() function returns 1 if the number is ``infinity'', otherwise
0.
The isnan() function returns 1 if the number is ``NaN'', otherwise 0.
SEE ALSO
math(3)
IEEE Standard for Binary Floating-Point Arithmetic, Std 754-1985, ANSI.
BUGS
Neither the VAX nor the Tahoe floating point have distinguished values
for either infinity or not-a-number. These routines always return 0 on
those architectures.
BSD Experimental April 20, 1991 1