c-strtod: when ENDPTR is non-NULL, set *ENDPTR in new failure path
[gnulib.git] / lib / c-strtod.c
1 /* Convert string to double, using the C locale.
2
3    Copyright (C) 2003, 2004, 2006, 2009 Free Software Foundation, Inc.
4
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.
9
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.
14
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/>.  */
17
18 /* Written by Paul Eggert.  */
19
20 #include <config.h>
21
22 #include "c-strtod.h"
23
24 #include <errno.h>
25 #include <locale.h>
26 #include <stdlib.h>
27
28 #include "xalloc.h"
29
30 #if LONG
31 # define C_STRTOD c_strtold
32 # define DOUBLE long double
33 # define STRTOD_L strtold_l
34 #else
35 # define C_STRTOD c_strtod
36 # define DOUBLE double
37 # define STRTOD_L strtod_l
38 #endif
39
40 /* c_strtold falls back on strtod if strtold doesn't conform to C99.  */
41 #if LONG && HAVE_C99_STRTOLD
42 # define STRTOD strtold
43 #else
44 # define STRTOD strtod
45 #endif
46
47 #ifdef LC_ALL_MASK
48
49 /* Cache for the C locale object.
50    Marked volatile so that different threads see the same value
51    (avoids locking).  */
52 static volatile locale_t c_locale_cache;
53
54 /* Return the C locale object, or (locale_t) 0 with errno set
55    if it cannot be created.  */
56 static inline locale_t
57 c_locale (void)
58 {
59   if (!c_locale_cache)
60     c_locale_cache = newlocale (LC_ALL_MASK, "C", (locale_t) 0);
61   return c_locale_cache;
62 }
63
64 #endif
65
66 DOUBLE
67 C_STRTOD (char const *nptr, char **endptr)
68 {
69   DOUBLE r;
70
71 #ifdef LC_ALL_MASK
72
73   locale_t locale = c_locale ();
74   if (!locale)
75     {
76       if (endptr)
77         *endptr = nptr;
78       return 0; /* errno is set here */
79     }
80
81   r = STRTOD_L (nptr, endptr, locale);
82
83 #else
84
85   char *saved_locale = setlocale (LC_NUMERIC, NULL);
86
87   if (saved_locale)
88     {
89       saved_locale = xstrdup (saved_locale);
90       setlocale (LC_NUMERIC, "C");
91     }
92
93   r = STRTOD (nptr, endptr);
94
95   if (saved_locale)
96     {
97       int saved_errno = errno;
98
99       setlocale (LC_NUMERIC, saved_locale);
100       free (saved_locale);
101       errno = saved_errno;
102     }
103
104 #endif
105
106   return r;
107 }