:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / crtdll / float / isnan.c
1 /* Copyright (C) 1991, 1992, 1995 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
8
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 Library General Public License for more details.
13
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB.  If
16 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17 Cambridge, MA 02139, USA.  */
18
19 #include <crtdll/math.h>
20 #include <crtdll/float.h>
21 #include <crtdll/internal/ieee.h>
22
23 int _isnan(double __x)
24 {
25         double_t * x = (double_t *)&__x;
26         return ( x->exponent == 0x7ff  && ( x->mantissah != 0 || x->mantissal != 0 ));  
27 }
28
29 int _isnanl(long double __x)
30 {
31         
32         /* Intel's extended format has the normally implicit 1 explicit
33            present.  Sigh!  */
34         
35         long_double_t * x = (long_double_t *)&__x;
36         
37         
38          /* IEEE 854 NaN's have the maximum possible
39      exponent and a nonzero mantissa.  */
40           
41         return (( x->exponent == 0x7fff)  
42           && ( (x->mantissah & 0x80000000) != 0) 
43           && ( (x->mantissah & (unsigned int)0x7fffffff) != 0  || x->mantissal != 0 )); 
44 }
45
46
47 int _isinf(double __x)
48 {
49         double_t * x = (double_t *)&__x;
50         return ( x->exponent == 0x7ff  && ( x->mantissah == 0 && x->mantissal == 0 ));  
51 }
52
53
54
55 int _finite( double x )
56 {
57         return !_isinf(x);
58 }
59
60 int _isinfl(long double __x)
61 {
62         /* Intel's extended format has the normally implicit 1 explicit
63            present.  Sigh!  */
64            
65         long_double_t * x = (long_double_t *)&__x;
66         
67         
68          /* An IEEE 854 infinity has an exponent with the
69      maximum possible value and a zero mantissa.  */
70  
71                 
72         if ( x->exponent == 0x7fff  && ( (x->mantissah == 0x80000000 )   && x->mantissal == 0 ))
73                 return x->sign ? -1 : 1;
74         return 0;
75 }
76
77