SURFEX v7.3
General documentation of Surfex
 All Classes Files Functions Variables Typedefs
/home/dasprezs/EXPORT_v7_3/src/LIB/LFI_COMPRESS/srcc/ieee_is_nan.c
Go to the documentation of this file.
00001 #include <math.h>
00002 
00003 #ifdef NO_UNDERSCORE
00004 # define IEEE_IS_NAN ieee_is_nan
00005 #else
00006 # define IEEE_IS_NAN ieee_is_nan__
00007 #endif
00008 
00009 int IEEE_IS_NAN(double *x){
00010     return isnan(*x);
00011 }