2006-02-27 23:51:28 +00:00
|
|
|
/* sf_c_isnan.c -- float version of s_c_isnan.c.
|
2000-02-17 19:39:52 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ====================================================
|
|
|
|
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Developed at SunPro, a Sun Microsystems, Inc. business.
|
|
|
|
* Permission to use, copy, modify, and distribute this
|
|
|
|
* software is freely granted, provided that this notice
|
|
|
|
* is preserved.
|
|
|
|
* ====================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* isnanf(x) returns 1 is x is nan, else 0;
|
2006-02-27 23:51:28 +00:00
|
|
|
*
|
2016-04-04 15:49:31 -05:00
|
|
|
* isnanf is an extension declared in <math.h>.
|
2000-02-17 19:39:52 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "fdlibm.h"
|
2009-07-09 17:04:56 +00:00
|
|
|
#include <ieeefp.h>
|
|
|
|
|
|
|
|
#undef isnanf
|
2000-02-17 19:39:52 +00:00
|
|
|
|
2006-02-27 23:51:28 +00:00
|
|
|
int
|
2017-12-03 21:43:30 -06:00
|
|
|
isnanf (float x)
|
2000-02-17 19:39:52 +00:00
|
|
|
{
|
|
|
|
__int32_t ix;
|
|
|
|
GET_FLOAT_WORD(ix,x);
|
|
|
|
ix &= 0x7fffffff;
|
2001-04-04 13:33:01 +00:00
|
|
|
return FLT_UWORD_IS_NAN(ix);
|
2000-02-17 19:39:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _DOUBLE_IS_32BITS
|
|
|
|
|
2006-03-07 22:14:04 +00:00
|
|
|
#undef isnan
|
|
|
|
|
2006-02-27 23:51:28 +00:00
|
|
|
int
|
2017-12-03 21:43:30 -06:00
|
|
|
isnan (double x)
|
2000-02-17 19:39:52 +00:00
|
|
|
{
|
|
|
|
return isnanf((float) x);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* defined(_DOUBLE_IS_32BITS) */
|