longlong2str.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: longlong2str();
  19.   longlong2str(dst, radix, val)
  20.   converts the (longlong) 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. #if defined(HAVE_LONG_LONG) && !defined(longlong2str) && !defined(HAVE_LONGLONG2STR)
  39. extern char NEAR _dig_vec[];
  40. /*
  41.   This assumes that longlong multiplication is faster than longlong division.
  42. */
  43. char *longlong2str(longlong val,char *dst,int radix)
  44. {
  45.   char buffer[65];
  46.   register char *p;
  47.   long long_val;
  48.   if (radix < 0)
  49.   {
  50.     if (radix < -36 || radix > -2) return (char*) 0;
  51.     if (val < 0) {
  52.       *dst++ = '-';
  53.       val = -val;
  54.     }
  55.     radix = -radix;
  56.   }
  57.   else
  58.   {
  59.     if (radix > 36 || radix < 2) return (char*) 0;
  60.   }
  61.   if (val == 0)
  62.   {
  63.     *dst++='0';
  64.     *dst='';
  65.     return dst;
  66.   }
  67.   p = &buffer[sizeof(buffer)-1];
  68.   *p = '';
  69.   while ((ulonglong) val > (ulonglong) LONG_MAX)
  70.   {
  71.     ulonglong quo=(ulonglong) val/(uint) radix;
  72.     uint rem= (uint) (val- quo* (uint) radix);
  73.     *--p = _dig_vec[rem];
  74.     val= quo;
  75.   }
  76.   long_val= (long) val;
  77.   while (long_val != 0)
  78.   {
  79.     long quo= long_val/radix;
  80.     *--p = _dig_vec[(uchar) (long_val - quo*radix)];
  81.     long_val= quo;
  82.   }
  83.   while ((*dst++ = *p++) != 0) ;
  84.   return dst-1;
  85. }
  86. #endif
  87. #ifndef longlong10_to_str
  88. char *longlong10_to_str(longlong val,char *dst,int radix)
  89. {
  90.   char buffer[65];
  91.   register char *p;
  92.   long long_val;
  93.   if (radix < 0)
  94.   {
  95.     if (val < 0)
  96.     {
  97.       *dst++ = '-';
  98.       val = -val;
  99.     }
  100.   }
  101.   if (val == 0)
  102.   {
  103.     *dst++='0';
  104.     *dst='';
  105.     return dst;
  106.   }
  107.   p = &buffer[sizeof(buffer)-1];
  108.   *p = '';
  109.   while ((ulonglong) val > (ulonglong) LONG_MAX)
  110.   {
  111.     ulonglong quo=(ulonglong) val/(uint) 10;
  112.     uint rem= (uint) (val- quo* (uint) 10);
  113.     *--p = _dig_vec[rem];
  114.     val= quo;
  115.   }
  116.   long_val= (long) val;
  117.   while (long_val != 0)
  118.   {
  119.     long quo= long_val/10;
  120.     *--p = _dig_vec[(uchar) (long_val - quo*10)];
  121.     long_val= quo;
  122.   }
  123.   while ((*dst++ = *p++) != 0) ;
  124.   return dst-1;
  125. }
  126. #endif