strtol.c
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:4k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (c) 1990 The Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *        notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *        notice, this list of conditions and the following disclaimer in the
  12.  *        documentation and/or other materials provided with the distribution.
  13.  * 3. Neither the name of the University nor the names of its contributors
  14.  *        may be used to endorse or promote products derived from this software
  15.  *        without specific prior written permission.
  16.  *
  17.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  18.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  19.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  20.  * ARE DISCLAIMED.      IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  21.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  22.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  23.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  24.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  25.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  26.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  27.  * SUCH DAMAGE.
  28.  */
  29. #include <net-snmp/net-snmp-config.h>
  30. #if defined(LIBC_SCCS) && !defined(lint)
  31. static char     sccsid[] = "@(#)strtol.c    5.4 (Berkeley) 2/23/91";
  32. #endif                          /* LIBC_SCCS and not lint */
  33. #if !HAVE_STRTOL
  34. #if HAVE_LIMITS_H
  35. #include <limits.h>
  36. #endif
  37. #include <ctype.h>
  38. #include <errno.h>
  39. #if HAVE_STDLIB_H
  40. #include <stdlib.h>
  41. #endif
  42. /*
  43.  * Convert a string to a long integer.
  44.  *
  45.  * Ignores `locale' stuff.  Assumes that the upper and lower case
  46.  * alphabets and digits are each contiguous.
  47.  */
  48. long
  49. strtol(const char *nptr, char **endptr, int base)
  50. {
  51.     const char     *s = nptr;
  52.     unsigned long   acc;
  53.     int             c;
  54.     unsigned long   cutoff;
  55.     int             neg = 0, any, cutlim;
  56.     /*
  57.      * Skip white space and pick up leading +/- sign if any. If base is 0,
  58.      * allow 0x for hex and 0 for octal, else assume decimal; if base is
  59.      * already 16, allow 0x.
  60.      */
  61.     do {
  62.         c = *s++;
  63.     } while (isspace(c));
  64.     if (c == '-') {
  65.         neg = 1;
  66.         c = *s++;
  67.     } else if (c == '+')
  68.         c = *s++;
  69.     if ((base == 0 || base == 16) && c == '0' && (*s == 'x' || *s == 'X')) {
  70.         c = s[1];
  71.         s += 2;
  72.         base = 16;
  73.     }
  74.     if (base == 0)
  75.         base = c == '0' ? 8 : 10;
  76.     /*
  77.      * Compute the cutoff value between legal numbers and illegal numbers.
  78.      * That is the largest legal value, divided by the base.  An input
  79.      * number that is greater than this value, if followed by a legal
  80.      * input character, is too big.  One that is equal to this value may
  81.      * be valid or not; the limit between valid and invalid numbers is
  82.      * then based on the last digit.  For instance, if the range for longs
  83.      * is [-2147483648..2147483647] and the input base is 10, cutoff will
  84.      * be set to 214748364 and cutlim to either 7 (neg==0) or 8 (neg==1),
  85.      * meaning that if we have accumulated a value > 214748364, or equal
  86.      * but the next digit is > 7 (or 8), the number is too big, and we
  87.      * will return a range error.
  88.      *
  89.      * Set any if any `digits' consumed; make it negative to indicate
  90.      * overflow.
  91.      */
  92.     cutoff = neg ? -(unsigned long) LONG_MIN : LONG_MAX;
  93.     cutlim = cutoff % (unsigned long) base;
  94.     cutoff /= (unsigned long) base;
  95.     for (acc = 0, any = 0;; c = *s++) {
  96.         if (isdigit(c))
  97.             c -= '0';
  98.         else if (isalpha(c))
  99.             c -= isupper(c) ? 'A' - 10 : 'a' - 10;
  100.         else
  101.             break;
  102.         if (c >= base)
  103.             break;
  104.         if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim)
  105.             any = -1;
  106.         else {
  107.             any = 1;
  108.             acc *= base;
  109.             acc += c;
  110.         }
  111.     }
  112.     if (any < 0) {
  113.         acc = neg ? LONG_MIN : LONG_MAX;
  114.         errno = ERANGE;
  115.     } else if (neg)
  116.         acc = -acc;
  117.     if (endptr != 0)
  118.         *endptr = any ? s - 1 : (char *) nptr;
  119.     return (acc);
  120. }
  121. #endif                          /* !HAVE_STRTOL */