int2str.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

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