28 lines
585 B
C
28 lines
585 B
C
|
/* _FDtest function -- IEEE 754 version */
|
||
|
#include "wctype.h"
|
||
|
#include "xmath.h"
|
||
|
_STD_BEGIN
|
||
|
|
||
|
_CRTIMP2 short _FDtest(float *px)
|
||
|
{ /* categorize *px */
|
||
|
unsigned short *ps = (unsigned short *)px;
|
||
|
|
||
|
if ((ps[_F0] & _FMASK) == _FMAX << _FOFF)
|
||
|
return ((ps[_F0] & _FFRAC) != 0 || ps[_F1] != 0
|
||
|
? NAN : INF);
|
||
|
else if ((ps[_F0] & ~_FSIGN) != 0 || ps[_F1] != 0)
|
||
|
return (FINITE);
|
||
|
else
|
||
|
return (0);
|
||
|
}
|
||
|
_STD_END
|
||
|
|
||
|
/*
|
||
|
* Copyright (c) 1994 by P.J. Plauger. ALL RIGHTS RESERVED.
|
||
|
* Consult your license regarding permissions and restrictions.
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
941029 pjp: added _STD machinery
|
||
|
*/
|