3 /* A more useful interface to strtol.
4 Copyright (C) 1995, 1996, 1998-2001 Free Software Foundation, Inc.
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)
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.
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20 /* Written by Jim Meyering. */
27 # define __strtol strtol
28 # define __strtol_t long int
29 # define __xstrtol xstrtol
32 /* Some pre-ANSI implementations (e.g. SunOS 4)
33 need stderr defined if assertion checking is enabled. */
65 /* The extra casts work around common compiler bugs. */
66 #define TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
67 /* The outer cast is needed to work around a bug in Cray C 5.0.3.0.
68 It is necessary at least when t == time_t. */
69 #define TYPE_MINIMUM(t) ((t) (TYPE_SIGNED (t) \
70 ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0))
71 #define TYPE_MAXIMUM(t) (~ (t) 0 - TYPE_MINIMUM (t))
73 #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
74 # define IN_CTYPE_DOMAIN(c) 1
76 # define IN_CTYPE_DOMAIN(c) isascii(c)
79 #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c))
83 #if !HAVE_DECL_STRTOL && !defined strtol
87 #if !HAVE_DECL_STRTOUL && !defined strtoul
88 unsigned long int strtoul ();
91 #if !HAVE_DECL_STRTOIMAX && !defined strtoimax
92 intmax_t strtoimax ();
95 #if !HAVE_DECL_STRTOUMAX && !defined strtoumax
96 uintmax_t strtoumax ();
100 bkm_scale (__strtol_t
*x
, int scale_factor
)
102 __strtol_t product
= *x
* scale_factor
;
103 if (*x
!= product
/ scale_factor
)
110 bkm_scale_by_power (__strtol_t
*x
, int base
, int power
)
113 if (bkm_scale (x
, base
))
119 /* FIXME: comment. */
122 __xstrtol (const char *s
, char **ptr
, int strtol_base
,
123 __strtol_t
*val
, const char *valid_suffixes
)
129 assert (0 <= strtol_base
&& strtol_base
<= 36);
131 p
= (ptr
? ptr
: &t_ptr
);
133 if (! TYPE_SIGNED (__strtol_t
))
136 while (ISSPACE ((unsigned char) *q
))
139 return LONGINT_INVALID
;
143 tmp
= __strtol (s
, p
, strtol_base
);
145 return LONGINT_OVERFLOW
;
149 /* If there is no number but there is a valid suffix, assume the
150 number is 1. The string is invalid otherwise. */
151 if (valid_suffixes
&& **p
&& strchr (valid_suffixes
, **p
))
154 return LONGINT_INVALID
;
157 /* Let valid_suffixes == NULL mean `allow any suffix'. */
158 /* FIXME: update all callers except the ones that allow suffixes
159 after the number, changing last parameter NULL to `""'. */
172 if (!strchr (valid_suffixes
, **p
))
175 return LONGINT_INVALID_SUFFIX_CHAR
;
178 if (strchr (valid_suffixes
, '0'))
180 /* The ``valid suffix'' '0' is a special flag meaning that
181 an optional second suffix is allowed, which can change
182 the base. A suffix "B" (e.g. "100MB") stands for a power
183 of 1000, whereas a suffix "iB" (e.g. "100MiB") stands for
184 a power of 1024. If no suffix (e.g. "100M"), assume
195 case 'D': /* 'D' is obsolescent */
205 overflow
= bkm_scale (&tmp
, 512);
209 overflow
= bkm_scale (&tmp
, 1024);
216 case 'E': /* exa or exbi */
217 overflow
= bkm_scale_by_power (&tmp
, base
, 6);
220 case 'G': /* giga or gibi */
221 case 'g': /* 'g' is undocumented; for compatibility only */
222 overflow
= bkm_scale_by_power (&tmp
, base
, 3);
227 overflow
= bkm_scale_by_power (&tmp
, base
, 1);
230 case 'M': /* mega or mebi */
231 case 'm': /* 'm' is undocumented; for compatibility only */
232 overflow
= bkm_scale_by_power (&tmp
, base
, 2);
235 case 'P': /* peta or pebi */
236 overflow
= bkm_scale_by_power (&tmp
, base
, 5);
239 case 'T': /* tera or tebi */
240 case 't': /* 't' is undocumented; for compatibility only */
241 overflow
= bkm_scale_by_power (&tmp
, base
, 4);
245 overflow
= bkm_scale (&tmp
, 2);
248 case 'Y': /* yotta or 2**80 */
249 overflow
= bkm_scale_by_power (&tmp
, base
, 8);
252 case 'Z': /* zetta or 2**70 */
253 overflow
= bkm_scale_by_power (&tmp
, base
, 7);
258 return LONGINT_INVALID_SUFFIX_CHAR
;
263 return LONGINT_OVERFLOW
;
272 #ifdef TESTING_XSTRTO
280 main (int argc
, char** argv
)
285 program_name
= argv
[0];
286 for (i
=1; i
<argc
; i
++)
291 s_err
= __xstrtol (argv
[i
], &p
, 0, &val
, "bckmw");
292 if (s_err
== LONGINT_OK
)
294 printf ("%s->%lu (%s)\n", argv
[i
], val
, p
);
298 STRTOL_FATAL_ERROR (argv
[i
], "arg", s_err
);
304 #endif /* TESTING_XSTRTO */