]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - libiberty/strtod.c
Automatic date update in version.in
[thirdparty/binutils-gdb.git] / libiberty / strtod.c
CommitLineData
252b5132 1/* Implementation of strtod for systems with atof.
fd67aa11 2 Copyright (C) 1991-2024 Free Software Foundation, Inc.
252b5132
RH
3
4This file is part of the libiberty library. This library is free
5software; you can redistribute it and/or modify it under the
6terms of the GNU General Public License as published by the
7Free Software Foundation; either version 2, or (at your option)
8any later version.
9
10This library is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13GNU General Public License for more details.
14
15You should have received a copy of the GNU General Public License
16along with GNU CC; see the file COPYING. If not, write to
979c05d3 17the Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
252b5132
RH
18
19As a special exception, if you link this library with files
20compiled with a GNU compiler to produce an executable, this does not cause
21the resulting executable to be covered by the GNU General Public License.
22This exception does not however invalidate any other reasons why
23the executable file might be covered by the GNU General Public License. */
24
39423523
DD
25/*
26
d4d868a2
RW
27@deftypefn Supplemental double strtod (const char *@var{string}, @
28 char **@var{endptr})
39423523 29
56056af5 30This ISO C function converts the initial portion of @var{string} to a
99b58139 31@code{double}. If @var{endptr} is not @code{NULL}, a pointer to the
39423523
DD
32character after the last character used in the conversion is stored in
33the location referenced by @var{endptr}. If no conversion is
34performed, zero is returned and the value of @var{string} is stored in
35the location referenced by @var{endptr}.
36
37@end deftypefn
38
39*/
40
f021637a 41#include "ansidecl.h"
ac424eb3 42#include "safe-ctype.h"
252b5132 43
49b1fae4 44extern double atof (const char *);
252b5132
RH
45
46/* Disclaimer: this is currently just used by CHILL in GDB and therefore
47 has not been tested well. It may have been tested for nothing except
48 that it compiles. */
49
50double
49b1fae4 51strtod (char *str, char **ptr)
252b5132
RH
52{
53 char *p;
54
55 if (ptr == (char **)0)
56 return atof (str);
57
58 p = str;
59
ac424eb3 60 while (ISSPACE (*p))
252b5132
RH
61 ++p;
62
63 if (*p == '+' || *p == '-')
64 ++p;
65
66 /* INF or INFINITY. */
67 if ((p[0] == 'i' || p[0] == 'I')
68 && (p[1] == 'n' || p[1] == 'N')
69 && (p[2] == 'f' || p[2] == 'F'))
70 {
71 if ((p[3] == 'i' || p[3] == 'I')
72 && (p[4] == 'n' || p[4] == 'N')
73 && (p[5] == 'i' || p[5] == 'I')
74 && (p[6] == 't' || p[6] == 'T')
75 && (p[7] == 'y' || p[7] == 'Y'))
76 {
1504972f 77 *ptr = p + 8;
252b5132
RH
78 return atof (str);
79 }
80 else
81 {
82 *ptr = p + 3;
83 return atof (str);
84 }
85 }
86
87 /* NAN or NAN(foo). */
88 if ((p[0] == 'n' || p[0] == 'N')
89 && (p[1] == 'a' || p[1] == 'A')
90 && (p[2] == 'n' || p[2] == 'N'))
91 {
92 p += 3;
93 if (*p == '(')
94 {
95 ++p;
96 while (*p != '\0' && *p != ')')
97 ++p;
98 if (*p == ')')
99 ++p;
100 }
101 *ptr = p;
102 return atof (str);
103 }
104
105 /* digits, with 0 or 1 periods in it. */
ac424eb3 106 if (ISDIGIT (*p) || *p == '.')
252b5132
RH
107 {
108 int got_dot = 0;
ac424eb3 109 while (ISDIGIT (*p) || (!got_dot && *p == '.'))
252b5132
RH
110 {
111 if (*p == '.')
112 got_dot = 1;
113 ++p;
114 }
115
116 /* Exponent. */
117 if (*p == 'e' || *p == 'E')
118 {
119 int i;
120 i = 1;
121 if (p[i] == '+' || p[i] == '-')
122 ++i;
ac424eb3 123 if (ISDIGIT (p[i]))
252b5132 124 {
ac424eb3 125 while (ISDIGIT (p[i]))
252b5132
RH
126 ++i;
127 *ptr = p + i;
128 return atof (str);
129 }
130 }
131 *ptr = p;
132 return atof (str);
133 }
134 /* Didn't find any digits. Doesn't look like a number. */
135 *ptr = str;
136 return 0.0;
137}