1 /* Copyright (C) 1991, 1992 Free Software Foundation, Inc.
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; either version 2, or (at your option)
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with this program; if not, write to the Free Software Foundation,
15 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
32 #define DBL_MAX 1.7976931348623159e+308
33 #define DBL_MIN 2.2250738585072010e-308
46 /* Convert NPTR to a double. If ENDPTR is not NULL, a pointer to the
47 character after the last one used in the number is put in *ENDPTR. */
53 register const char *s
;
56 /* The number so far. */
59 int got_dot
; /* Found a decimal point. */
60 int got_digit
; /* Seen any digits. */
62 /* The exponent of the number. */
78 sign
= *s
== '-' ? -1 : 1;
79 if (*s
== '-' || *s
== '+')
92 /* Make sure that multiplication by 10 will not overflow. */
93 if (num
> DBL_MAX
* 0.1)
94 /* The value of the digit doesn't matter, since we have already
95 gotten as many digits as can be represented in a `double'.
96 This doesn't necessarily mean the result will overflow.
97 The exponent may reduce it to within range.
99 We just need to record that there was another
100 digit so that we can multiply by 10 later. */
103 num
= (num
* 10.0) + (*s
- '0');
105 /* Keep track of the number of digits after the decimal point.
106 If we just divided by 10 here, we would lose precision. */
110 else if (!got_dot
&& *s
== '.')
111 /* Record that we have found the decimal point. */
114 /* Any other character terminates the number. */
121 if (tolower (*s
) == 'e')
123 /* Get the exponent specified after the `e' or `E'. */
130 exp
= strtol (s
, &end
, 10);
133 /* The exponent overflowed a `long int'. It is probably a safe
134 assumption that an exponent that cannot be represented by
135 a `long int' exceeds the limits of a `double'. */
144 /* There was no exponent. Reset END to point to
145 the 'e' or 'E', so *ENDPTR will be set there. */
146 end
= (char *) s
- 1;
153 *endptr
= (char *) s
;
158 /* Multiply NUM by 10 to the EXPONENT power,
159 checking for overflow and underflow. */
163 if (num
< DBL_MIN
* pow (10.0, (double) -exponent
))
166 else if (exponent
> 0)
168 if (num
> DBL_MAX
* pow (10.0, (double) -exponent
))
172 num
*= pow (10.0, (double) exponent
);
177 /* Return an overflow error. */
179 return HUGE_VAL
* sign
;
182 /* Return an underflow error. */
184 *endptr
= (char *) nptr
;
189 /* There was no number. */
191 *endptr
= (char *) nptr
;