1 /* Copyright (C) 1991, 92, 94, 95, 96 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library 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 GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If
16 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17 Cambridge, MA 02139, USA. */
24 # define USE_NUMBER_GROUPING
26 # define HAVE_LIMITS_H
48 #ifdef USE_NUMBER_GROUPING
49 # include "../locale/localeinfo.h"
52 /* Nonzero if we are defining `strtoul' or `strtouq', operating on
58 # define INT unsigned LONG int
61 /* Determine the name. */
65 # define strtol wcstouq
67 # define strtol wcstoul
71 # define strtol strtouq
73 # define strtol strtoul
79 # define strtol wcstoq
81 # define strtol wcstol
85 # define strtol strtoq
90 /* If QUAD is defined, we are defining `strtoq' or `strtouq',
91 operating on `long long int's. */
93 # define LONG long long
95 # define LONG_MIN LONG_LONG_MIN
97 # define LONG_MAX LONG_LONG_MAX
99 # define ULONG_MAX ULONG_LONG_MAX
100 # if __GNUC__ == 2 && __GNUC_MINOR__ < 7
101 /* Work around gcc bug with using this constant. */
102 static const unsigned long long int maxquad
= ULONG_LONG_MAX
;
104 # define ULONG_MAX maxquad
113 # define L_(ch) L##ch
114 # define UCHAR_TYPE wint_t
115 # define STRING_TYPE wchar_t
116 # define ISSPACE(ch) iswspace (ch)
117 # define ISALPHA(ch) iswalpha (ch)
118 # define TOUPPER(ch) towupper (ch)
121 # define UCHAR_TYPE unsigned char
122 # define STRING_TYPE char
123 # define ISSPACE(ch) isspace (ch)
124 # define ISALPHA(ch) isalpha (ch)
125 # define TOUPPER(ch) toupper (ch)
129 # define INTERNAL(x) INTERNAL1(x)
130 # define INTERNAL1(x) __##x##_internal
132 # define INTERNAL(x) __/**/x/**/_internal
135 #ifdef USE_NUMBER_GROUPING
136 /* This file defines a function to check for correct grouping. */
137 # include "grouping.h"
141 /* Convert NPTR to an `unsigned long int' or `long int' in base BASE.
142 If BASE is 0 the base is determined by the presence of a leading
143 zero, indicating octal or a leading "0x" or "0X", indicating hexadecimal.
144 If BASE is < 2 or > 36, it is reset to 10.
145 If ENDPTR is not NULL, a pointer to the character after the last
146 one converted is stored in *ENDPTR. */
149 INTERNAL (strtol
) (nptr
, endptr
, base
, group
)
150 const STRING_TYPE
*nptr
;
151 STRING_TYPE
**endptr
;
156 register unsigned LONG
int cutoff
;
157 register unsigned int cutlim
;
158 register unsigned LONG
int i
;
159 register const STRING_TYPE
*s
;
160 register UCHAR_TYPE c
;
161 const STRING_TYPE
*save
, *end
;
164 #ifdef USE_NUMBER_GROUPING
165 /* The thousands character of the current locale. */
167 /* The numeric grouping specification of the current locale,
168 in the format described in <locale.h>. */
169 const char *grouping
;
173 grouping
= _NL_CURRENT (LC_NUMERIC
, GROUPING
);
174 if (*grouping
<= 0 || *grouping
== CHAR_MAX
)
178 /* Figure out the thousands separator character. */
179 if (mbtowc (&thousands
, _NL_CURRENT (LC_NUMERIC
, THOUSANDS_SEP
),
180 strlen (_NL_CURRENT (LC_NUMERIC
, THOUSANDS_SEP
))) <= 0)
181 thousands
= (wchar_t) *_NL_CURRENT (LC_NUMERIC
, THOUSANDS_SEP
);
182 if (thousands
== L
'\0')
190 if (base
< 0 || base
== 1 || base
> 36)
195 /* Skip white space. */
201 /* Check for a sign. */
207 else if (*s
== L_('+'))
215 if (base
== 16 && s
[0] == L_('0') && TOUPPER (s
[1]) == L_('X'))
218 /* If BASE is zero, figure it out ourselves. */
222 if (TOUPPER (s
[1]) == L_('X'))
233 /* Save the pointer so we can check later if anything happened. */
236 #ifdef USE_NUMBER_GROUPING
239 /* Find the end of the digit string and check its grouping. */
241 for (c
= *end
; c
!= L_('\0'); c
= *++end
)
242 if (c
!= thousands
&& (c
< L_('0') || c
> L_('9'))
243 && (!ISALPHA (c
) || TOUPPER (c
) - L_('A') + 10 >= base
))
248 end
= correctly_grouped_prefix (s
, end
, thousands
, grouping
);
254 cutoff
= ULONG_MAX
/ (unsigned LONG
int) base
;
255 cutlim
= ULONG_MAX
% (unsigned LONG
int) base
;
259 for (c
= *s
; c
!= L_('\0'); c
= *++s
)
263 if (c
>= L_('0') && c
<= L_('9'))
265 else if (ISALPHA (c
))
266 c
= TOUPPER (c
) - L_('A') + 10;
271 /* Check for overflow. */
272 if (i
> cutoff
|| (i
== cutoff
&& c
> cutlim
))
276 i
*= (unsigned LONG
int) base
;
281 /* Check if anything actually happened. */
285 /* Store in ENDPTR the address of one character
286 past the last character we converted. */
288 *endptr
= (STRING_TYPE
*) s
;
291 /* Check for a value that is within the range of
292 `unsigned LONG int', but outside the range of `LONG int'. */
294 -(unsigned LONG
int) LONG_MIN
: (unsigned LONG
int) LONG_MAX
))
304 return negative
? LONG_MIN
: LONG_MAX
;
308 /* Return the result of the appropriate sign. */
309 return (negative
? -i
: i
);
312 /* We must handle a special case here: the base is 0 or 16 and the
313 first two characters and '0' and 'x', but the rest are no
314 hexadecimal digits. This is no error case. We return 0 and
315 ENDPTR points to the `x`. */
317 if (save
- nptr
>= 2 && TOUPPER (save
[-1]) == L_('X')
318 && save
[-2] == L_('0'))
319 *endptr
= (STRING_TYPE
*) &save
[-1];
321 /* There was no number to convert. */
322 *endptr
= (STRING_TYPE
*) nptr
;
327 /* External user entry point. */
330 strtol (nptr
, endptr
, base
)
331 const STRING_TYPE
*nptr
;
332 STRING_TYPE
**endptr
;
335 return INTERNAL (strtol
) (nptr
, endptr
, base
, 0);
339 /* We need this indirection when `strtol' is defined as a macro
340 for one of the other names. */
341 #define weak1(x) weak_symbol(x)