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

SNMP编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (c) 1990, 1993
  3.  *      The Regents of the University of California.  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 !HAVE_STRTOUL
  31. #if defined(LIBC_SCCS) && !defined(lint)
  32. static char     sccsid[] = "@(#)strtoul.c   8.1 (Berkeley) 6/4/93";
  33. #endif                          /* LIBC_SCCS and not lint */
  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 an unsigned long integer.
  44.  *
  45.  * Ignores `locale' stuff.  Assumes that the upper and lower case
  46.  * alphabets and digits are each contiguous.
  47.  */
  48. unsigned long
  49. strtoul(const char *nptr, char **endptr, int base)
  50. {
  51.     const char     *s = nptr;
  52.     unsigned long   acc;
  53.     unsigned char   c;
  54.     unsigned long   cutoff;
  55.     int             neg = 0, any, cutlim;
  56.     /*
  57.      * See strtol for comments as to the logic used.
  58.      */
  59.     do {
  60.         c = *s++;
  61.     } while (isspace(c));
  62.     if (c == '-') {
  63.         neg = 1;
  64.         c = *s++;
  65.     } else if (c == '+')
  66.         c = *s++;
  67.     if ((base == 0 || base == 16) && c == '0' && (*s == 'x' || *s == 'X')) {
  68.         c = s[1];
  69.         s += 2;
  70.         base = 16;
  71.     }
  72.     if (base == 0)
  73.         base = c == '0' ? 8 : 10;
  74.     cutoff = (unsigned long) ULONG_MAX / (unsigned long) base;
  75.     cutlim = (unsigned long) ULONG_MAX % (unsigned long) base;
  76.     for (acc = 0, any = 0;; c = *s++) {
  77.         if (!isascii(c))
  78.             break;
  79.         if (isdigit(c))
  80.             c -= '0';
  81.         else if (isalpha(c))
  82.             c -= isupper(c) ? 'A' - 10 : 'a' - 10;
  83.         else
  84.             break;
  85.         if (c >= base)
  86.             break;
  87.         if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
  88.             any = -1;
  89.         else {
  90.             any = 1;
  91.             acc *= base;
  92.             acc += c;
  93.         }
  94.     }
  95.     if (any < 0) {
  96.         acc = ULONG_MAX;
  97.         errno = ERANGE;
  98.     } else if (neg)
  99.         acc = -acc;
  100.     if (endptr != 0)
  101.         *endptr = (char *) (any ? s - 1 : nptr);
  102.     return (acc);
  103. }
  104. #endif                          /* !HAVE_STRTOUL */