1 /* A more useful interface to strtol.
2 Copyright (C) 1995, 1996, 1998-2001 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* Written by Jim Meyering. */
25 # define __strtol strtol
26 # define __strtol_t long int
27 # define __xstrtol xstrtol
30 /* Some pre-ANSI implementations (e.g. SunOS 4)
31 need stderr defined if assertion checking is enabled. */
63 /* The extra casts work around common compiler bugs. */
64 #define TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
65 /* The outer cast is needed to work around a bug in Cray C 5.0.3.0.
66 It is necessary at least when t == time_t. */
67 #define TYPE_MINIMUM(t) ((t) (TYPE_SIGNED (t) \
68 ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0))
69 #define TYPE_MAXIMUM(t) (~ (t) 0 - TYPE_MINIMUM (t))
71 #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
72 # define IN_CTYPE_DOMAIN(c) 1
74 # define IN_CTYPE_DOMAIN(c) isascii(c)
77 #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c))
81 #if !HAVE_DECL_STRTOL && !defined strtol
85 #if !HAVE_DECL_STRTOUL && !defined strtoul
86 unsigned long int strtoul ();
89 #if !HAVE_DECL_STRTOIMAX && !defined strtoimax
90 intmax_t strtoimax ();
93 #if !HAVE_DECL_STRTOUMAX && !defined strtoumax
94 uintmax_t strtoumax ();
98 bkm_scale (__strtol_t
*x
, int scale_factor
)
100 __strtol_t product
= *x
* scale_factor
;
101 if (*x
!= product
/ scale_factor
)
108 bkm_scale_by_power (__strtol_t
*x
, int base
, int power
)
111 if (bkm_scale (x
, base
))
117 /* FIXME: comment. */
120 __xstrtol (const char *s
, char **ptr
, int strtol_base
,
121 __strtol_t
*val
, const char *valid_suffixes
)
127 assert (0 <= strtol_base
&& strtol_base
<= 36);
129 p
= (ptr
? ptr
: &t_ptr
);
131 if (! TYPE_SIGNED (__strtol_t
))
134 while (ISSPACE ((unsigned char) *q
))
137 return LONGINT_INVALID
;
141 tmp
= __strtol (s
, p
, strtol_base
);
143 return LONGINT_OVERFLOW
;
145 return LONGINT_INVALID
;
147 /* Let valid_suffixes == NULL mean `allow any suffix'. */
148 /* FIXME: update all callers except the ones that allow suffixes
149 after the number, changing last parameter NULL to `""'. */
162 if (!strchr (valid_suffixes
, **p
))
165 return LONGINT_INVALID_SUFFIX_CHAR
;
168 if (strchr (valid_suffixes
, '0'))
170 /* The ``valid suffix'' '0' is a special flag meaning that
171 an optional second suffix is allowed, which can change
172 the base, e.g. "100MD" for 100 megabytes decimal. */
190 overflow
= bkm_scale (&tmp
, 512);
194 overflow
= bkm_scale (&tmp
, 1024);
202 overflow
= bkm_scale_by_power (&tmp
, base
, 6);
206 case 'g': /* 'g' is undocumented; for compatibility only */
207 overflow
= bkm_scale_by_power (&tmp
, base
, 3);
211 overflow
= bkm_scale_by_power (&tmp
, base
, 1);
215 case 'm': /* 'm' is undocumented; for compatibility only */
216 overflow
= bkm_scale_by_power (&tmp
, base
, 2);
220 overflow
= bkm_scale_by_power (&tmp
, base
, 5);
224 case 't': /* 't' is undocumented; for compatibility only */
225 overflow
= bkm_scale_by_power (&tmp
, base
, 4);
229 overflow
= bkm_scale (&tmp
, 2);
232 case 'Y': /* Yotta */
233 overflow
= bkm_scale_by_power (&tmp
, base
, 8);
236 case 'Z': /* Zetta */
237 overflow
= bkm_scale_by_power (&tmp
, base
, 7);
242 return LONGINT_INVALID_SUFFIX_CHAR
;
247 return LONGINT_OVERFLOW
;
256 #ifdef TESTING_XSTRTO
264 main (int argc
, char** argv
)
269 program_name
= argv
[0];
270 for (i
=1; i
<argc
; i
++)
275 s_err
= __xstrtol (argv
[i
], &p
, 0, &val
, "bckmw");
276 if (s_err
== LONGINT_OK
)
278 printf ("%s->%lu (%s)\n", argv
[i
], val
, p
);
282 STRTOL_FATAL_ERROR (argv
[i
], "arg", s_err
);
288 #endif /* TESTING_XSTRTO */