isinf, isnan - test for infinity or not-a-number
Standard C Library (libc, -lc)
#include <math.h>
int
isinf(double);
int
isnan(double);
The isinf() function returns 1 if the number is ``infinity'', otherwise
0.
The isnan() function returns 1 if the number is ``not-a-number'', otherwise
0.
isinff(3), isnanf(3), math(3)
IEEE Standard for Binary Floating-Point Arithmetic, Std 754-1985, ANSI.
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 January 29, 1994 BSD
[ Back ] |