1 /* Convert string representation of a number into an integer value.
2 Copyright (C) 1991, 92, 94, 95, 96, 97, 98 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
25 # define USE_NUMBER_GROUPING
27 # define HAVE_LIMITS_H
36 # define __set_errno(Val) errno = (Val)
53 #ifdef USE_NUMBER_GROUPING
54 # include "../locale/localeinfo.h"
57 /* Nonzero if we are defining `strtoul' or `strtoull', operating on
63 # define INT unsigned LONG int
66 /* Determine the name. */
67 #ifdef USE_IN_EXTENDED_LOCALE_MODEL
71 # define strtol __wcstoull_l
73 # define strtol __wcstoul_l
77 # define strtol __strtoull_l
79 # define strtol __strtoul_l
85 # define strtol __wcstoll_l
87 # define strtol __wcstol_l
91 # define strtol __strtoll_l
93 # define strtol __strtol_l
101 # define strtol wcstoull
103 # define strtol wcstoul
107 # define strtol strtoull
109 # define strtol strtoul
113 # ifdef USE_WIDE_CHAR
115 # define strtol wcstoll
117 # define strtol wcstol
121 # define strtol strtoll
127 /* If QUAD is defined, we are defining `strtoll' or `strtoull',
128 operating on `long long int's. */
130 # define LONG long long
131 # define STRTOL_LONG_MIN LONG_LONG_MIN
132 # define STRTOL_LONG_MAX LONG_LONG_MAX
133 # define STRTOL_ULONG_MAX ULONG_LONG_MAX
134 # if __GNUC__ == 2 && __GNUC_MINOR__ < 7
135 /* Work around gcc bug with using this constant. */
136 static const unsigned long long int maxquad
= ULONG_LONG_MAX
;
137 # undef STRTOL_ULONG_MAX
138 # define STRTOL_ULONG_MAX maxquad
144 # define ULONG_MAX ((unsigned long) ~(unsigned long) 0)
147 # define LONG_MAX ((long int) (ULONG_MAX >> 1))
149 # define STRTOL_LONG_MIN LONG_MIN
150 # define STRTOL_LONG_MAX LONG_MAX
151 # define STRTOL_ULONG_MAX ULONG_MAX
155 /* We use this code also for the extended locale handling where the
156 function gets as an additional argument the locale which has to be
157 used. To access the values we have to redefine the _NL_CURRENT
159 #ifdef USE_IN_EXTENDED_LOCALE_MODEL
161 # define _NL_CURRENT(category, item) \
162 (current->values[_NL_ITEM_INDEX (item)].string)
163 # define LOCALE_PARAM , loc
164 # define LOCALE_PARAM_DECL __locale_t loc;
166 # define LOCALE_PARAM
167 # define LOCALE_PARAM_DECL
170 #if defined _LIBC || defined HAVE_WCHAR_H
176 # define L_(Ch) L##Ch
177 # define UCHAR_TYPE wint_t
178 # define STRING_TYPE wchar_t
179 # ifdef USE_IN_EXTENDED_LOCALE_MODEL
180 # define ISSPACE(Ch) __iswspace_l ((Ch), loc)
181 # define ISALPHA(Ch) __iswalpha_l ((Ch), loc)
182 # define TOUPPER(Ch) __towupper_l ((Ch), loc)
184 # define ISSPACE(Ch) iswspace (Ch)
185 # define ISALPHA(Ch) iswalpha (Ch)
186 # define TOUPPER(Ch) towupper (Ch)
189 # if defined STDC_HEADERS || (!defined isascii && !defined HAVE_ISASCII)
190 # define IN_CTYPE_DOMAIN(c) 1
192 # define IN_CTYPE_DOMAIN(c) isascii(c)
195 # define UCHAR_TYPE unsigned char
196 # define STRING_TYPE char
197 # ifdef USE_IN_EXTENDED_LOCALE_MODEL
198 # define ISSPACE(Ch) __isspace_l ((Ch), loc)
199 # define ISALPHA(Ch) __isalpha_l ((Ch), loc)
200 # define TOUPPER(Ch) __toupper_l ((Ch), loc)
202 # define ISSPACE(Ch) (IN_CTYPE_DOMAIN (Ch) && isspace (Ch))
203 # define ISALPHA(Ch) (IN_CTYPE_DOMAIN (Ch) && isalpha (Ch))
204 # define TOUPPER(Ch) (IN_CTYPE_DOMAIN (Ch) ? toupper (Ch) : (Ch))
209 # define INTERNAL(X) INTERNAL1(X)
210 # define INTERNAL1(X) __##X##_internal
211 # define WEAKNAME(X) WEAKNAME1(X)
213 # define INTERNAL(X) __/**/X/**/_internal
216 #ifdef USE_NUMBER_GROUPING
217 /* This file defines a function to check for correct grouping. */
218 # include "grouping.h"
223 /* Convert NPTR to an `unsigned long int' or `long int' in base BASE.
224 If BASE is 0 the base is determined by the presence of a leading
225 zero, indicating octal or a leading "0x" or "0X", indicating hexadecimal.
226 If BASE is < 2 or > 36, it is reset to 10.
227 If ENDPTR is not NULL, a pointer to the character after the last
228 one converted is stored in *ENDPTR. */
231 INTERNAL (strtol
) (nptr
, endptr
, base
, group LOCALE_PARAM
)
232 const STRING_TYPE
*nptr
;
233 STRING_TYPE
**endptr
;
239 register unsigned LONG
int cutoff
;
240 register unsigned int cutlim
;
241 register unsigned LONG
int i
;
242 register const STRING_TYPE
*s
;
243 register UCHAR_TYPE c
;
244 const STRING_TYPE
*save
, *end
;
247 #ifdef USE_NUMBER_GROUPING
248 # ifdef USE_IN_EXTENDED_LOCALE_MODEL
249 struct locale_data
*current
= loc
->__locales
[LC_NUMERIC
];
251 /* The thousands character of the current locale. */
252 wchar_t thousands
= L
'\0';
253 /* The numeric grouping specification of the current locale,
254 in the format described in <locale.h>. */
255 const char *grouping
;
259 grouping
= _NL_CURRENT (LC_NUMERIC
, GROUPING
);
260 if (*grouping
<= 0 || *grouping
== CHAR_MAX
)
264 /* Figure out the thousands separator character. */
265 # if defined _LIBC || defined _HAVE_BTOWC
266 thousands
= __btowc (*_NL_CURRENT (LC_NUMERIC
, THOUSANDS_SEP
));
267 if (thousands
== WEOF
)
270 if (thousands
== L
'\0')
278 if (base
< 0 || base
== 1 || base
> 36)
280 __set_errno (EINVAL
);
286 /* Skip white space. */
292 /* Check for a sign. */
298 else if (*s
== L_('+'))
306 /* Recognize number prefix and if BASE is zero, figure it out ourselves. */
309 if ((base
== 0 || base
== 16) && TOUPPER (s
[1]) == L_('X'))
320 /* Save the pointer so we can check later if anything happened. */
323 #ifdef USE_NUMBER_GROUPING
326 /* Find the end of the digit string and check its grouping. */
328 for (c
= *end
; c
!= L_('\0'); c
= *++end
)
329 if ((wchar_t) c
!= thousands
330 && ((wchar_t) c
< L_('0') || (wchar_t) c
> L_('9'))
331 && (!ISALPHA (c
) || (int) (TOUPPER (c
) - L_('A') + 10) >= base
))
336 end
= correctly_grouped_prefix (s
, end
, thousands
, grouping
);
342 cutoff
= STRTOL_ULONG_MAX
/ (unsigned LONG
int) base
;
343 cutlim
= STRTOL_ULONG_MAX
% (unsigned LONG
int) base
;
347 for (c
= *s
; c
!= L_('\0'); c
= *++s
)
351 if (c
>= L_('0') && c
<= L_('9'))
353 else if (ISALPHA (c
))
354 c
= TOUPPER (c
) - L_('A') + 10;
359 /* Check for overflow. */
360 if (i
> cutoff
|| (i
== cutoff
&& c
> cutlim
))
364 i
*= (unsigned LONG
int) base
;
369 /* Check if anything actually happened. */
373 /* Store in ENDPTR the address of one character
374 past the last character we converted. */
376 *endptr
= (STRING_TYPE
*) s
;
379 /* Check for a value that is within the range of
380 `unsigned LONG int', but outside the range of `LONG int'. */
383 ? -((unsigned LONG
int) (STRTOL_LONG_MIN
+ 1)) + 1
384 : (unsigned LONG
int) STRTOL_LONG_MAX
))
390 __set_errno (ERANGE
);
392 return STRTOL_ULONG_MAX
;
394 return negative
? STRTOL_LONG_MIN
: STRTOL_LONG_MAX
;
398 /* Return the result of the appropriate sign. */
399 return negative
? -i
: i
;
402 /* We must handle a special case here: the base is 0 or 16 and the
403 first two characters are '0' and 'x', but the rest are no
404 hexadecimal digits. This is no error case. We return 0 and
405 ENDPTR points to the `x`. */
408 if (save
- nptr
>= 2 && TOUPPER (save
[-1]) == L_('X')
409 && save
[-2] == L_('0'))
410 *endptr
= (STRING_TYPE
*) &save
[-1];
412 /* There was no number to convert. */
413 *endptr
= (STRING_TYPE
*) nptr
;
419 /* External user entry point. */
423 # if defined (__STDC__) && __STDC__
424 # define PARAMS(Args) Args
426 # define PARAMS(Args) ()
430 INT strtol
PARAMS ((const STRING_TYPE
*nptr
, STRING_TYPE
**endptr
, int base
));
438 strtol (nptr
, endptr
, base LOCALE_PARAM
)
439 const STRING_TYPE
*nptr
;
440 STRING_TYPE
**endptr
;
444 return INTERNAL (strtol
) (nptr
, endptr
, base
, 0 LOCALE_PARAM
);