summaryrefslogtreecommitdiff
path: root/lib/xstrtod.c
blob: bab8b1219a21f351d88ced4ef907d2eca6163e44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#ifdef STDC_HEADERS
#include <stdlib.h>
#else
double strtod ();
#endif

#include <errno.h>
#include <stdio.h>
#include <limits.h>
#include <ctype.h>
#include "xstrtod.h"

/* An interface to strtod that encapsulates all the error checking
   one should usually perform.  Like strtod, but return zero upon
   successful conversion and put the result in *RESULT.  Return
   non-zero upon any failure.  */

int
xstrtod (str, ptr, result)
     const char *str;
     const char **ptr;
     double *result;
{
  double val;
  char *terminator;
  int fail;

  fail = 0;
  errno = 0;
  val = strtod (str, &terminator);

  /* Having a non-zero terminator is an error only when PTR is NULL. */
  if (terminator == str || (ptr == NULL && *terminator != '\0'))
    fail = 1;
  else
    {
      /* Allow underflow (in which case strtod returns zero),
	 but flag overflow as an error. */
      if (val != 0.0 && errno == ERANGE)
	fail = 1;
    }

  if (ptr != NULL)
    *ptr = terminator;

  *result = val;
  return fail;
}