1 /* Convert string to double, using the C locale.
3 Copyright (C) 2003, 2004, 2006, 2009 Free Software Foundation, Inc.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18 /* Written by Paul Eggert. */
30 # define C_STRTOD c_strtold
31 # define DOUBLE long double
32 # define STRTOD_L strtold_l
34 # define C_STRTOD c_strtod
35 # define DOUBLE double
36 # define STRTOD_L strtod_l
39 /* c_strtold falls back on strtod if strtold doesn't conform to C99. */
40 #if LONG && HAVE_C99_STRTOLD
41 # define STRTOD strtold
43 # define STRTOD strtod
48 /* Cache for the C locale object.
49 Marked volatile so that different threads see the same value
51 static volatile locale_t c_locale_cache
;
53 /* Return the C locale object, or (locale_t) 0 with errno set
54 if it cannot be created. */
55 static inline locale_t
59 c_locale_cache
= newlocale (LC_ALL_MASK
, "C", (locale_t
) 0);
60 return c_locale_cache
;
66 C_STRTOD (char const *nptr
, char **endptr
)
72 locale_t locale
= c_locale ();
76 *endptr
= (char *) nptr
;
77 return 0; /* errno is set here */
80 r
= STRTOD_L (nptr
, endptr
, locale
);
84 char *saved_locale
= setlocale (LC_NUMERIC
, NULL
);
88 saved_locale
= strdup (saved_locale
);
89 if (saved_locale
== NULL
)
92 *endptr
= (char *) nptr
;
93 return 0; /* errno is set here */
95 setlocale (LC_NUMERIC
, "C");
98 r
= STRTOD (nptr
, endptr
);
102 int saved_errno
= errno
;
104 setlocale (LC_NUMERIC
, saved_locale
);