home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / p / python / pytexdoc / ext / source / !Python / Monty / c / mystrtoul < prev    next >
Encoding:
Text File  |  1996-11-06  |  4.4 KB  |  180 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its
  8. documentation for any purpose and without fee is hereby granted,
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI or Corporation for National Research Initiatives or
  13. CNRI not be used in advertising or publicity pertaining to
  14. distribution of the software without specific, written prior
  15. permission.
  16.  
  17. While CWI is the initial source for this software, a modified version
  18. is made available by the Corporation for National Research Initiatives
  19. (CNRI) at the Internet address ftp://ftp.python.org.
  20.  
  21. STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
  22. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  23. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
  24. CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  25. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  26. PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  27. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  28. PERFORMANCE OF THIS SOFTWARE.
  29.  
  30. ******************************************************************/
  31.  
  32. #include "config.h"
  33.  
  34. /* Convert a possibly signed character to a nonnegative int */
  35. /* XXX This assumes characters are 8 bits wide */
  36. #ifdef __CHAR_UNSIGNED__
  37. #define Py_CHARMASK(c)        (c)
  38. #else
  39. #define Py_CHARMASK(c)        ((c) & 0xff)
  40. #endif
  41.  
  42. #include "rename2.h"
  43.  
  44. /* strtol and strtoul, renamed to avoid conflicts */
  45.  
  46. /*
  47. **    strtoul
  48. **        This is a general purpose routine for converting
  49. **        an ascii string to an integer in an arbitrary base.
  50. **        Leading white space is ignored.  If 'base' is zero
  51. **        it looks for a leading 0, 0x or 0X to tell which
  52. **        base.  If these are absent it defaults to 10.
  53. **        Base must be 0 or between 2 and 36 (inclusive).
  54. **        If 'ptr' is non-NULL it will contain a pointer to
  55. **        the end of the scan.
  56. **        Errors due to bad pointers will probably result in
  57. **        exceptions - we don't check for them.
  58. */
  59.  
  60. #include <ctype.h>
  61. #include <errno.h>
  62.  
  63. unsigned long
  64. mystrtoul(str, ptr, base)
  65. register char *    str;
  66. char **        ptr;
  67. int        base;
  68. {
  69.     register unsigned long    result;    /* return value of the function */
  70.     register int        c;    /* current input character */
  71.     register unsigned long    temp;    /* used in overflow testing */
  72.     int                ovf;    /* true if overflow occurred */
  73.  
  74.     result = 0;
  75.     ovf = 0;
  76.  
  77. /* catch silly bases */
  78.     if (base != 0 && (base < 2 || base > 36))
  79.     {
  80.     if (ptr)
  81.         *ptr = str;
  82.     return 0;
  83.     }
  84.  
  85. /* skip leading white space */
  86.     while (*str && isspace(Py_CHARMASK(*str)))
  87.     str++;
  88.  
  89. /* check for leading 0 or 0x for auto-base or base 16 */
  90.     switch (base)
  91.     {
  92.     case 0:        /* look for leading 0, 0x or 0X */
  93.     if (*str == '0')
  94.     {
  95.         str++;
  96.         if (*str == 'x' || *str == 'X')
  97.         {
  98.         str++;
  99.         base = 16;
  100.         }
  101.         else
  102.         base = 8;
  103.     }
  104.     else
  105.         base = 10;
  106.     break;
  107.  
  108.     case 16:    /* skip leading 0x or 0X */
  109.     if (*str == '0' && (*(str+1) == 'x' || *(str+1) == 'X'))
  110.         str += 2;
  111.     break;
  112.     }
  113.  
  114. /* do the conversion */
  115.     while (c = Py_CHARMASK(*str))
  116.     {
  117.     if (isdigit(c) && c - '0' < base)
  118.         c -= '0';
  119.     else
  120.     {
  121.         if (isupper(c))
  122.         c = tolower(c);
  123.         if (c >= 'a' && c <= 'z')
  124.         c -= 'a' - 10;
  125.         else    /* non-"digit" character */
  126.         break;
  127.         if (c >= base)    /* non-"digit" character */
  128.         break;
  129.     }
  130.     temp = result;
  131.     result = result * base + c;
  132. #ifndef MPW
  133.     if ((result - c) / base != temp)    /* overflow */
  134.         ovf = 1;
  135. #endif
  136.     str++;
  137.     }
  138.  
  139. /* set pointer to point to the last character scanned */
  140.     if (ptr)
  141.     *ptr = str;
  142.     if (ovf)
  143.     {
  144.     result = ~0;
  145.     errno = ERANGE;
  146.     }
  147.     return result;
  148. }
  149.  
  150. long
  151. mystrtol(str, ptr, base)
  152. char *    str;
  153. char ** ptr;
  154. int    base;
  155. {
  156.     long result;
  157.     char sign;
  158.     
  159.     while (*str && isspace(Py_CHARMASK(*str)))
  160.         str++;
  161.     
  162.     sign = *str;
  163.     if (sign == '+' || sign == '-')
  164.         str++;
  165.     
  166.     result = (long) mystrtoul(str, ptr, base);
  167.     
  168.     /* Signal overflow if the result appears negative,
  169.        except for the largest negative integer */
  170.     if (result < 0 && !(sign == '-' && result == -result)) {
  171.         errno = ERANGE;
  172.         result = 0x7fffffff;
  173.     }
  174.     
  175.     if (sign == '-')
  176.         result = -result;
  177.     
  178.     return result;
  179. }
  180.