strtol.c

00001 /*
00002  * Copyright (c) 1990 The Regents of the University of California.
00003  * All rights reserved.
00004  *
00005  * Redistribution and use in source and binary forms, with or without
00006  * modification, are permitted provided that the following conditions
00007  * are met:
00008  * 1. Redistributions of source code must retain the above copyright
00009  *        notice, this list of conditions and the following disclaimer.
00010  * 2. Redistributions in binary form must reproduce the above copyright
00011  *        notice, this list of conditions and the following disclaimer in the
00012  *        documentation and/or other materials provided with the distribution.
00013  * 3. Neither the name of the University nor the names of its contributors
00014  *        may be used to endorse or promote products derived from this software
00015  *        without specific prior written permission.
00016  *
00017  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
00018  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00019  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00020  * ARE DISCLAIMED.      IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
00021  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
00022  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
00023  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
00024  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00025  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
00026  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
00027  * SUCH DAMAGE.
00028  */
00029 
00030 #include <net-snmp/net-snmp-config.h>
00031 
00032 #if defined(LIBC_SCCS) && !defined(lint)
00033 static char     sccsid[] = "@(#)strtol.c    5.4 (Berkeley) 2/23/91";
00034 #endif                          /* LIBC_SCCS and not lint */
00035 
00036 #if !HAVE_STRTOL
00037 
00038 #if HAVE_LIMITS_H
00039 #include <limits.h>
00040 #endif
00041 #include <ctype.h>
00042 #include <errno.h>
00043 #if HAVE_STDLIB_H
00044 #include <stdlib.h>
00045 #endif
00046 
00047 /*
00048  * Convert a string to a long integer.
00049  *
00050  * Ignores `locale' stuff.  Assumes that the upper and lower case
00051  * alphabets and digits are each contiguous.
00052  */
00053 long
00054 strtol(const char *nptr, char **endptr, int base)
00055 {
00056     const char     *s = nptr;
00057     unsigned long   acc;
00058     int             c;
00059     unsigned long   cutoff;
00060     int             neg = 0, any, cutlim;
00061 
00062     /*
00063      * Skip white space and pick up leading +/- sign if any. If base is 0,
00064      * allow 0x for hex and 0 for octal, else assume decimal; if base is
00065      * already 16, allow 0x.
00066      */
00067     do {
00068         c = *s++;
00069     } while (isspace(c));
00070     if (c == '-') {
00071         neg = 1;
00072         c = *s++;
00073     } else if (c == '+')
00074         c = *s++;
00075     if ((base == 0 || base == 16) && c == '0' && (*s == 'x' || *s == 'X')) {
00076         c = s[1];
00077         s += 2;
00078         base = 16;
00079     }
00080     if (base == 0)
00081         base = c == '0' ? 8 : 10;
00082 
00083     /*
00084      * Compute the cutoff value between legal numbers and illegal numbers.
00085      * That is the largest legal value, divided by the base.  An input
00086      * number that is greater than this value, if followed by a legal
00087      * input character, is too big.  One that is equal to this value may
00088      * be valid or not; the limit between valid and invalid numbers is
00089      * then based on the last digit.  For instance, if the range for longs
00090      * is [-2147483648..2147483647] and the input base is 10, cutoff will
00091      * be set to 214748364 and cutlim to either 7 (neg==0) or 8 (neg==1),
00092      * meaning that if we have accumulated a value > 214748364, or equal
00093      * but the next digit is > 7 (or 8), the number is too big, and we
00094      * will return a range error.
00095      *
00096      * Set any if any `digits' consumed; make it negative to indicate
00097      * overflow.
00098      */
00099     cutoff = neg ? -(unsigned long) LONG_MIN : LONG_MAX;
00100     cutlim = cutoff % (unsigned long) base;
00101     cutoff /= (unsigned long) base;
00102     for (acc = 0, any = 0;; c = *s++) {
00103         if (isdigit(c))
00104             c -= '0';
00105         else if (isalpha(c))
00106             c -= isupper(c) ? 'A' - 10 : 'a' - 10;
00107         else
00108             break;
00109         if (c >= base)
00110             break;
00111         if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim)
00112             any = -1;
00113         else {
00114             any = 1;
00115             acc *= base;
00116             acc += c;
00117         }
00118     }
00119     if (any < 0) {
00120         acc = neg ? LONG_MIN : LONG_MAX;
00121         errno = ERANGE;
00122     } else if (neg)
00123         acc = -acc;
00124     if (endptr != 0)
00125         *endptr = any ? s - 1 : (char *) nptr;
00126     return (acc);
00127 }
00128 
00129 #endif                          /* !HAVE_STRTOL */

net-snmpに対してSat Sep 5 13:14:27 2009に生成されました。  doxygen 1.4.7