strtoll.c
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:3k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /* 
  2.  * strtoll.c --
  3.  *
  4.  * Source code for the "strtoll" library procedure.
  5.  *
  6.  * Copyright (c) 1988 The Regents of the University of California.
  7.  * Copyright (c) 1994 Sun Microsystems, Inc.
  8.  *
  9.  * See the file "license.terms" for information on usage and redistribution
  10.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  11.  *
  12.  * RCS: @(#) $Id: strtoll.c,v 1.5 2002/02/24 02:53:25 dgp Exp $
  13.  */
  14. #include "tcl.h"
  15. #include "tclPort.h"
  16. #include <ctype.h>
  17. #define TCL_WIDEINT_MAX (((Tcl_WideUInt)Tcl_LongAsWide(-1))>>1)
  18. /*
  19.  *----------------------------------------------------------------------
  20.  *
  21.  * strtoll --
  22.  *
  23.  * Convert an ASCII string into an integer.
  24.  *
  25.  * Results:
  26.  * The return value is the integer equivalent of string.  If endPtr
  27.  * is non-NULL, then *endPtr is filled in with the character
  28.  * after the last one that was part of the integer.  If string
  29.  * doesn't contain a valid integer value, then zero is returned
  30.  * and *endPtr is set to string.
  31.  *
  32.  * Side effects:
  33.  * None.
  34.  *
  35.  *----------------------------------------------------------------------
  36.  */
  37. #if TCL_WIDE_INT_IS_LONG
  38. long long
  39. #else
  40. Tcl_WideInt
  41. #endif
  42. strtoll(string, endPtr, base)
  43.     CONST char *string; /* String of ASCII digits, possibly
  44.  * preceded by white space.  For bases
  45.  * greater than 10, either lower- or
  46.  * upper-case digits may be used.
  47.  */
  48.     char **endPtr; /* Where to store address of terminating
  49.  * character, or NULL. */
  50.     int base; /* Base for conversion.  Must be less
  51.  * than 37.  If 0, then the base is chosen
  52.  * from the leading characters of string:
  53.  * "0x" means hex, "0" means octal, anything
  54.  * else means decimal.
  55.  */
  56. {
  57.     register CONST char *p;
  58.     Tcl_WideInt result = Tcl_LongAsWide(0);
  59.     Tcl_WideUInt uwResult;
  60.     /*
  61.      * Skip any leading blanks.
  62.      */
  63.     p = string;
  64.     while (isspace(UCHAR(*p))) {
  65. p += 1;
  66.     }
  67.     /*
  68.      * Check for a sign.
  69.      */
  70.     errno = 0;
  71.     if (*p == '-') {
  72. p += 1;
  73. uwResult = strtoull(p, endPtr, base);
  74. if (errno != ERANGE) {
  75.     if (uwResult > TCL_WIDEINT_MAX+1) {
  76. errno = ERANGE;
  77. return Tcl_LongAsWide(-1);
  78.     } else if (uwResult > TCL_WIDEINT_MAX) {
  79. return ~((Tcl_WideInt)TCL_WIDEINT_MAX);
  80.     } else {
  81. result = -((Tcl_WideInt) uwResult);
  82.     }
  83. }
  84.     } else {
  85. if (*p == '+') {
  86.     p += 1;
  87. }
  88. uwResult = strtoull(p, endPtr, base);
  89. if (errno != ERANGE) {
  90.     if (uwResult > TCL_WIDEINT_MAX) {
  91. errno = ERANGE;
  92. return Tcl_LongAsWide(-1);
  93.     } else {
  94. result = uwResult;
  95.     }
  96. }
  97.     }
  98.     if ((result == 0) && (endPtr != 0) && (*endPtr == p)) {
  99. *endPtr = (char *) string;
  100.     }
  101.     return result;
  102. }