1 /* Copyright (C) 1991, 1992 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. */
26 #define LONG_MAX (~(1 << (sizeof (long) * 8 - 1)))
27 #define LONG_MIN (-LONG_MAX-1)
28 #define ULONG_MAX ((unsigned long) ~(unsigned long) 0)
47 /* Convert NPTR to an `unsigned long int' or `long int' in base BASE.
48 If BASE is 0 the base is determined by the presence of a leading
49 zero, indicating octal or a leading "0x" or "0X", indicating hexadecimal.
50 If BASE is < 2 or > 36, it is reset to 10.
51 If ENDPTR is not NULL, a pointer to the character after the last
52 one converted is stored in *ENDPTR. */
55 #define strtol strtoul
59 strtol (nptr
, endptr
, base
)
65 register unsigned long int cutoff
;
66 register unsigned int cutlim
;
67 register unsigned long int i
;
68 register const char *s
;
69 register unsigned char c
;
73 if (base
< 0 || base
== 1 || base
> 36)
78 /* Skip white space. */
84 /* Check for a sign. */
98 if (base
== 16 && s
[0] == '0' && toupper (s
[1]) == 'X')
101 /* If BASE is zero, figure it out ourselves. */
106 if (toupper (s
[1]) == 'X')
118 /* Save the pointer so we can check later if anything happened. */
121 cutoff
= ULONG_MAX
/ (unsigned long int) base
;
122 cutlim
= ULONG_MAX
% (unsigned long int) base
;
126 for (c
= *s
; c
!= '\0'; c
= *++s
)
130 else if (isalpha (c
))
131 c
= toupper (c
) - 'A' + 10;
136 /* Check for overflow. */
137 if (i
> cutoff
|| (i
== cutoff
&& c
> cutlim
))
141 i
*= (unsigned long int) base
;
146 /* Check if anything actually happened. */
150 /* Store in ENDPTR the address of one character
151 past the last character we converted. */
153 *endptr
= (char *) s
;
156 /* Check for a value that is within the range of
157 `unsigned long int', but outside the range of `long int'. */
159 - (unsigned long int) LONG_MIN
: (unsigned long int) LONG_MAX
))
169 return negative
? LONG_MIN
: LONG_MAX
;
173 /* Return the result of the appropriate sign. */
174 return (negative
? - i
: i
);
177 /* There was no number to convert. */
179 *endptr
= (char *) nptr
;