158f0484fSRodney W. Grimes /*- 258f0484fSRodney W. Grimes * Copyright (c) 1990, 1993 358f0484fSRodney W. Grimes * The Regents of the University of California. All rights reserved. 458f0484fSRodney W. Grimes * 558f0484fSRodney W. Grimes * Redistribution and use in source and binary forms, with or without 658f0484fSRodney W. Grimes * modification, are permitted provided that the following conditions 758f0484fSRodney W. Grimes * are met: 858f0484fSRodney W. Grimes * 1. Redistributions of source code must retain the above copyright 958f0484fSRodney W. Grimes * notice, this list of conditions and the following disclaimer. 1058f0484fSRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright 1158f0484fSRodney W. Grimes * notice, this list of conditions and the following disclaimer in the 1258f0484fSRodney W. Grimes * documentation and/or other materials provided with the distribution. 1358f0484fSRodney W. Grimes * 3. All advertising materials mentioning features or use of this software 1458f0484fSRodney W. Grimes * must display the following acknowledgement: 1558f0484fSRodney W. Grimes * This product includes software developed by the University of 1658f0484fSRodney W. Grimes * California, Berkeley and its contributors. 1758f0484fSRodney W. Grimes * 4. Neither the name of the University nor the names of its contributors 1858f0484fSRodney W. Grimes * may be used to endorse or promote products derived from this software 1958f0484fSRodney W. Grimes * without specific prior written permission. 2058f0484fSRodney W. Grimes * 2158f0484fSRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 2258f0484fSRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 2358f0484fSRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 2458f0484fSRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 2558f0484fSRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 2658f0484fSRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 2758f0484fSRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 2858f0484fSRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 2958f0484fSRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 3058f0484fSRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 3158f0484fSRodney W. Grimes * SUCH DAMAGE. 3258f0484fSRodney W. Grimes */ 3358f0484fSRodney W. Grimes 3458f0484fSRodney W. Grimes #if defined(LIBC_SCCS) && !defined(lint) 3558f0484fSRodney W. Grimes static char sccsid[] = "@(#)strtol.c 8.1 (Berkeley) 6/4/93"; 3658f0484fSRodney W. Grimes #endif /* LIBC_SCCS and not lint */ 3758f0484fSRodney W. Grimes 3858f0484fSRodney W. Grimes #include <limits.h> 3958f0484fSRodney W. Grimes #include <ctype.h> 4058f0484fSRodney W. Grimes #include <errno.h> 4158f0484fSRodney W. Grimes #include <stdlib.h> 4258f0484fSRodney W. Grimes 4358f0484fSRodney W. Grimes 4458f0484fSRodney W. Grimes /* 4558f0484fSRodney W. Grimes * Convert a string to a long integer. 4658f0484fSRodney W. Grimes * 4758f0484fSRodney W. Grimes * Ignores `locale' stuff. Assumes that the upper and lower case 4858f0484fSRodney W. Grimes * alphabets and digits are each contiguous. 4958f0484fSRodney W. Grimes */ 5058f0484fSRodney W. Grimes long 5158f0484fSRodney W. Grimes strtol(nptr, endptr, base) 5258f0484fSRodney W. Grimes const char *nptr; 5358f0484fSRodney W. Grimes char **endptr; 5458f0484fSRodney W. Grimes register int base; 5558f0484fSRodney W. Grimes { 5658f0484fSRodney W. Grimes register const char *s = nptr; 5758f0484fSRodney W. Grimes register unsigned long acc; 582bdca0d9SAndrey A. Chernov register unsigned char c; 5958f0484fSRodney W. Grimes register unsigned long cutoff; 6058f0484fSRodney W. Grimes register int neg = 0, any, cutlim; 6158f0484fSRodney W. Grimes 6258f0484fSRodney W. Grimes /* 6358f0484fSRodney W. Grimes * Skip white space and pick up leading +/- sign if any. 6458f0484fSRodney W. Grimes * If base is 0, allow 0x for hex and 0 for octal, else 6558f0484fSRodney W. Grimes * assume decimal; if base is already 16, allow 0x. 6658f0484fSRodney W. Grimes */ 6758f0484fSRodney W. Grimes do { 6858f0484fSRodney W. Grimes c = *s++; 6958f0484fSRodney W. Grimes } while (isspace(c)); 7058f0484fSRodney W. Grimes if (c == '-') { 7158f0484fSRodney W. Grimes neg = 1; 7258f0484fSRodney W. Grimes c = *s++; 7358f0484fSRodney W. Grimes } else if (c == '+') 7458f0484fSRodney W. Grimes c = *s++; 7558f0484fSRodney W. Grimes if ((base == 0 || base == 16) && 7658f0484fSRodney W. Grimes c == '0' && (*s == 'x' || *s == 'X')) { 7758f0484fSRodney W. Grimes c = s[1]; 7858f0484fSRodney W. Grimes s += 2; 7958f0484fSRodney W. Grimes base = 16; 8058f0484fSRodney W. Grimes } 8158f0484fSRodney W. Grimes if (base == 0) 8258f0484fSRodney W. Grimes base = c == '0' ? 8 : 10; 8358f0484fSRodney W. Grimes 8458f0484fSRodney W. Grimes /* 8558f0484fSRodney W. Grimes * Compute the cutoff value between legal numbers and illegal 8658f0484fSRodney W. Grimes * numbers. That is the largest legal value, divided by the 8758f0484fSRodney W. Grimes * base. An input number that is greater than this value, if 8858f0484fSRodney W. Grimes * followed by a legal input character, is too big. One that 8958f0484fSRodney W. Grimes * is equal to this value may be valid or not; the limit 9058f0484fSRodney W. Grimes * between valid and invalid numbers is then based on the last 9158f0484fSRodney W. Grimes * digit. For instance, if the range for longs is 9258f0484fSRodney W. Grimes * [-2147483648..2147483647] and the input base is 10, 9358f0484fSRodney W. Grimes * cutoff will be set to 214748364 and cutlim to either 9458f0484fSRodney W. Grimes * 7 (neg==0) or 8 (neg==1), meaning that if we have accumulated 9558f0484fSRodney W. Grimes * a value > 214748364, or equal but the next digit is > 7 (or 8), 9658f0484fSRodney W. Grimes * the number is too big, and we will return a range error. 9758f0484fSRodney W. Grimes * 9858f0484fSRodney W. Grimes * Set any if any `digits' consumed; make it negative to indicate 9958f0484fSRodney W. Grimes * overflow. 10058f0484fSRodney W. Grimes */ 10158f0484fSRodney W. Grimes cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX; 10258f0484fSRodney W. Grimes cutlim = cutoff % (unsigned long)base; 10358f0484fSRodney W. Grimes cutoff /= (unsigned long)base; 10458f0484fSRodney W. Grimes for (acc = 0, any = 0;; c = *s++) { 1052bdca0d9SAndrey A. Chernov if (!isascii(c)) 1062bdca0d9SAndrey A. Chernov break; 10758f0484fSRodney W. Grimes if (isdigit(c)) 10858f0484fSRodney W. Grimes c -= '0'; 10958f0484fSRodney W. Grimes else if (isalpha(c)) 11058f0484fSRodney W. Grimes c -= isupper(c) ? 'A' - 10 : 'a' - 10; 11158f0484fSRodney W. Grimes else 11258f0484fSRodney W. Grimes break; 11358f0484fSRodney W. Grimes if (c >= base) 11458f0484fSRodney W. Grimes break; 11551295a4dSJordan K. Hubbard if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) 11658f0484fSRodney W. Grimes any = -1; 11758f0484fSRodney W. Grimes else { 11858f0484fSRodney W. Grimes any = 1; 11958f0484fSRodney W. Grimes acc *= base; 12058f0484fSRodney W. Grimes acc += c; 12158f0484fSRodney W. Grimes } 12258f0484fSRodney W. Grimes } 12358f0484fSRodney W. Grimes if (any < 0) { 12458f0484fSRodney W. Grimes acc = neg ? LONG_MIN : LONG_MAX; 12558f0484fSRodney W. Grimes errno = ERANGE; 12658f0484fSRodney W. Grimes } else if (neg) 12758f0484fSRodney W. Grimes acc = -acc; 12858f0484fSRodney W. Grimes if (endptr != 0) 12958f0484fSRodney W. Grimes *endptr = (char *)(any ? s - 1 : nptr); 13058f0484fSRodney W. Grimes return (acc); 13158f0484fSRodney W. Grimes } 132