int2str.c
上传用户:jmzj888
上传日期:2007-01-02
资源大小:220k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.   Defines: int2str(), itoa(), ltoa()
  3.   int2str(dst, radix, val)
  4.   converts the (long) integer "val" to character form and moves it to
  5.   the destination string "dst" followed by a terminating NUL.  The
  6.   result is normally a pointer to this NUL character, but if the radix
  7.   is dud the result will be NullS and nothing will be changed.
  8.   If radix is -2..-36, val is taken to be SIGNED.
  9.   If radix is  2.. 36, val is taken to be UNSIGNED.
  10.   That is, val is signed if and only if radix is.  You will normally
  11.   use radix -10 only through itoa and ltoa, for radix 2, 8, or 16
  12.   unsigned is what you generally want.
  13.   _dig_vec is public just in case someone has a use for it.
  14.   The definitions of itoa and ltoa are actually macros in m_string.h,
  15.   but this is where the code is.
  16.   Note: The standard itoa() returns a pointer to the argument, when int2str
  17. returns the pointer to the end-null.
  18. itoa assumes that 10 -base numbers are allways signed and other arn't.
  19. */
  20. #include <global.h>
  21. #include "m_string.h"
  22. char NEAR _dig_vec[] =
  23.   "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  24. char *int2str(val,dst, radix)
  25.     register long val;
  26.     register char *dst;
  27.     register int radix;
  28. {
  29.   char buffer[33];
  30.   register char *p;
  31.   if (radix < 0) {
  32.     if (radix < -36 || radix > -2) return NullS;
  33.     if (val < 0) {
  34.       *dst++ = '-';
  35.       val = -val;
  36.     }
  37.     radix = -radix;
  38.   } else {
  39.     if (radix > 36 || radix < 2) return NullS;
  40.   }
  41.   /*  The slightly contorted code which follows is due to the
  42.       fact that few machines directly support unsigned long / and %.
  43.       Certainly the VAX C compiler generates a subroutine call.  In
  44.       the interests of efficiency (hollow laugh) I let this happen
  45.       for the first digit only; after that "val" will be in range so
  46.       that signed integer division will do.  Sorry 'bout that.
  47.       CHECK THE CODE PRODUCED BY YOUR C COMPILER.  The first % and /
  48.       should be unsigned, the second % and / signed, but C compilers
  49.       tend to be extraordinarily sensitive to minor details of style.
  50.       This works on a VAX, that's all I claim for it.
  51.       */
  52.   p = &buffer[32];
  53.   *p = '';
  54.   *--p = _dig_vec[(ulong) val % (ulong) radix];
  55.   val = (ulong) val / (ulong) radix;
  56. #ifdef HAVE_LDIV
  57.   while (val != 0)
  58.   {
  59.     ldiv_t res;
  60.     res=ldiv(val,radix);
  61.     *--p = _dig_vec[res.rem];
  62.     val= res.quot;
  63.   }
  64. #else
  65.   while (val != 0)
  66.   {
  67.     *--p = _dig_vec[val%radix];
  68.     val /= radix;
  69.   }
  70. #endif
  71.   while ((*dst++ = *p++) != 0) ;
  72.   return dst-1;
  73. }
  74. #if defined(HAVE_LONG_LONG) && !defined(longlong2str)
  75. char *longlong2str(val,dst, radix)
  76.     register longlong val;
  77.     register char *dst;
  78.     register int radix;
  79. {
  80.   char buffer[64];
  81.   register char *p;
  82.   if (radix < 0) {
  83.     if (radix < -36 || radix > -2) return NullS;
  84.     if (val < 0) {
  85.       *dst++ = '-';
  86.       val = -val;
  87.     }
  88.     radix = -radix;
  89.   } else {
  90.     if (radix > 36 || radix < 2) return NullS;
  91.   }
  92.   /*  The slightly contorted code which follows is due to the
  93.       fact that few machines directly support unsigned long / and %.
  94.       Certainly the VAX C compiler generates a subroutine call.  In
  95.       the interests of efficiency (hollow laugh) I let this happen
  96.       for the first digit only; after that "val" will be in range so
  97.       that signed integer division will do.  Sorry 'bout that.
  98.       CHECK THE CODE PRODUCED BY YOUR C COMPILER.  The first % and /
  99.       should be unsigned, the second % and / signed, but C compilers
  100.       tend to be extraordinarily sensitive to minor details of style.
  101.       This works on a VAX, that's all I claim for it.
  102.       */
  103.   p = &buffer[sizeof(buffer)-1];
  104.   *p = '';
  105.   *--p = _dig_vec[(ulonglong) val % (ulonglong) radix];
  106.   val = (ulonglong) val / (ulonglong) radix;
  107.   while (val != 0)
  108.   {
  109.     *--p = _dig_vec[val%radix];
  110.     val /= radix;
  111.   }
  112.   while ((*dst++ = *p++) != 0) ;
  113.   return dst-1;
  114. }
  115. #endif
  116. #ifdef USE_MY_ITOA
  117. /* Change to less general itoa interface */
  118. char *my_itoa(val,dst,radix)
  119. int val;
  120. char *dst;
  121. int radix;
  122. {
  123.   VOID(int2str((long) val,dst,(radix == 10 ? -10 : radix)));
  124.   return dst;
  125. }
  126. char *my_ltoa(val,dst,radix)
  127. long val;
  128. char *dst;
  129. int radix;
  130. {
  131.   VOID(int2str((long) val,dst,(radix == 10 ? -10 : radix)));
  132.   return dst;
  133. }
  134. #endif