* xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
[gnulib.git] / lib / xstrtod.c
1 /* error-checking interface to strtod-like functions
2
3    Copyright (C) 1996, 1999, 2000, 2003, 2004, 2005 Free Software
4    Foundation, Inc.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2, or (at your option)
9    any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software Foundation,
18    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
19
20 /* Written by Jim Meyering.  */
21
22 #ifdef HAVE_CONFIG_H
23 # include <config.h>
24 #endif
25
26 #include "xstrtod.h"
27
28 #include <errno.h>
29 #include <limits.h>
30 #include <stdio.h>
31
32 /* An interface to strtod that encapsulates all the error checking
33    one should usually perform.  Like strtod, but upon successful
34    conversion put the result in *RESULT and return true.  Return
35    false and don't modify *RESULT upon any failure.  CONVERT
36    specifies the conversion function, e.g., strtod itself.  */
37
38 bool
39 xstrtod (char const *str, char const **ptr, double *result,
40          double (*convert) (char const *, char **))
41 {
42   double val;
43   char *terminator;
44   bool ok = true;
45
46   errno = 0;
47   val = convert (str, &terminator);
48
49   /* Having a non-zero terminator is an error only when PTR is NULL. */
50   if (terminator == str || (ptr == NULL && *terminator != '\0'))
51     ok = false;
52   else
53     {
54       /* Allow underflow (in which case strtod returns zero),
55          but flag overflow as an error. */
56       if (val != 0.0 && errno == ERANGE)
57         ok = false;
58     }
59
60   if (ptr != NULL)
61     *ptr = terminator;
62
63   *result = val;
64   return ok;
65 }