1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 03:12:48 +02:00
Files
coreutils/lib/xstrtod.c

54 lines
1.0 KiB
C
Raw Normal View History

1995-11-15 21:58:58 +00:00
#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"
1996-03-24 18:13:56 +00:00
/* 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. */
1995-11-15 21:58:58 +00:00
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;
}