#include <math.h>Go to the source code of this file.
Functions | |
| int | finite_r_ (float *f) |
| int | finite_d_ (double *d) |
| int | isinf_r_ (float *f) |
| int | isinf_d_ (double *d) |
| int | isnan_r_ (float *f) |
| int | isnan_d_ (double *d) |
Variables | |
| const char * | ident = "F77 interface to finite,isinf,isnan" |
|
|
Definition at line 8 of file f77_isnan.c. 00008 { return finite(*d); }
|
|
|
Definition at line 7 of file f77_isnan.c. 00007 { double d=*f; return finite(d); }
|
|
|
Definition at line 10 of file f77_isnan.c. 00010 { return isinf(*d); }
|
|
|
Definition at line 9 of file f77_isnan.c. 00009 { double d=*f; return isinf(d); }
|
|
|
Definition at line 12 of file f77_isnan.c. 00012 { return isnan(*d); }
|
|
|
Definition at line 11 of file f77_isnan.c. 00011 { double d=*f; return isnan(d); }
|
|
|
Definition at line 6 of file f77_isnan.c. Referenced by msgLogInit(). |
1.3.9.1