X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fxstrtol.c;h=07023d9ffdb74e8557ced00a37d7a0d5a52826ac;hb=a655ee23a7d332ff458d3785df802f69acd6ea4f;hp=00d4b117b1cc2a75d426a958e9d9c31ccc308b76;hpb=0ba789cec8958e89b450b692decf0e45d4d3ad91;p=gnulib.git diff --git a/lib/xstrtol.c b/lib/xstrtol.c index 00d4b117b..07023d9ff 100644 --- a/lib/xstrtol.c +++ b/lib/xstrtol.c @@ -1,5 +1,5 @@ /* A more useful interface to strtol. - Copyright (C) 1995, 1996, 1998 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1998-2000 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -21,6 +21,12 @@ # include #endif +#ifndef __strtol +# define __strtol strtol +# define __strtol_t long int +# define __xstrtol xstrtol +#endif + /* Some pre-ANSI implementations (e.g. SunOS 4) need stderr defined if assertion checking is enabled. */ #include @@ -39,6 +45,7 @@ #endif #include +#include #include #ifndef errno @@ -61,22 +68,32 @@ extern int errno; ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0)) #define TYPE_MAXIMUM(t) (~ (t) 0 - TYPE_MINIMUM (t)) -#ifndef ULONG_MAX -# define ULONG_MAX TYPE_MAXIMUM (unsigned long int) +#if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII)) +# define IN_CTYPE_DOMAIN(c) 1 +#else +# define IN_CTYPE_DOMAIN(c) isascii(c) #endif -#ifndef LONG_MAX -# define LONG_MAX TYPE_MAXIMUM (long int) -#endif +#define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c)) #include "xstrtol.h" -__unsigned long int __strtol (); +#ifndef strtol +long int strtol (); +#endif + +#ifndef strtoul +unsigned long int strtoul (); +#endif + +#ifndef strtoumax +uintmax_t strtoumax (); +#endif static int -bkm_scale (__unsigned long int *x, int scale_factor) +bkm_scale (__strtol_t *x, int scale_factor) { - __unsigned long int product = *x * scale_factor; + __strtol_t product = *x * scale_factor; if (*x != product / scale_factor) return 1; *x = product; @@ -84,7 +101,7 @@ bkm_scale (__unsigned long int *x, int scale_factor) } static int -bkm_scale_by_power (__unsigned long int *x, int base, int power) +bkm_scale_by_power (__strtol_t *x, int base, int power) { while (power--) if (bkm_scale (x, base)) @@ -97,16 +114,25 @@ bkm_scale_by_power (__unsigned long int *x, int base, int power) strtol_error __xstrtol (const char *s, char **ptr, int strtol_base, - __unsigned long int *val, const char *valid_suffixes) + __strtol_t *val, const char *valid_suffixes) { char *t_ptr; char **p; - __unsigned long int tmp; + __strtol_t tmp; assert (0 <= strtol_base && strtol_base <= 36); p = (ptr ? ptr : &t_ptr); + if (! TYPE_SIGNED (__strtol_t)) + { + const char *q = s; + while (ISSPACE ((unsigned char) *q)) + ++q; + if (*q == '-') + return LONGINT_INVALID; + } + errno = 0; tmp = __strtol (s, p, strtol_base); if (errno != 0) @@ -115,8 +141,8 @@ __xstrtol (const char *s, char **ptr, int strtol_base, return LONGINT_INVALID; /* Let valid_suffixes == NULL mean `allow any suffix'. */ - /* FIXME: update all callers except the one in tail.c changing - last parameter NULL to `""'. */ + /* FIXME: update all callers except the ones that allow suffixes + after the number, changing last parameter NULL to `""'. */ if (!valid_suffixes) { *val = tmp; @@ -130,7 +156,10 @@ __xstrtol (const char *s, char **ptr, int strtol_base, int overflow; if (!strchr (valid_suffixes, **p)) - return LONGINT_INVALID_SUFFIX_CHAR; + { + *val = tmp; + return LONGINT_INVALID_SUFFIX_CHAR; + } if (strchr (valid_suffixes, '0')) { @@ -203,6 +232,7 @@ __xstrtol (const char *s, char **ptr, int strtol_base, break; default: + *val = tmp; return LONGINT_INVALID_SUFFIX_CHAR; break; } @@ -234,7 +264,7 @@ main (int argc, char** argv) for (i=1; i