longlong2str.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /*
  14.   Defines: longlong2str();
  15.   longlong2str(dst, radix, val)
  16.   converts the (longlong) integer "val" to character form and moves it to
  17.   the destination string "dst" followed by a terminating NUL.  The
  18.   result is normally a pointer to this NUL character, but if the radix
  19.   is dud the result will be NullS and nothing will be changed.
  20.   If radix is -2..-36, val is taken to be SIGNED.
  21.   If radix is  2.. 36, val is taken to be UNSIGNED.
  22.   That is, val is signed if and only if radix is.  You will normally
  23.   use radix -10 only through itoa and ltoa, for radix 2, 8, or 16
  24.   unsigned is what you generally want.
  25.   _dig_vec is public just in case someone has a use for it.
  26.   The definitions of itoa and ltoa are actually macros in m_string.h,
  27.   but this is where the code is.
  28.   Note: The standard itoa() returns a pointer to the argument, when int2str
  29. returns the pointer to the end-null.
  30. itoa assumes that 10 -base numbers are allways signed and other arn't.
  31. */
  32. #include <my_global.h>
  33. #include "m_string.h"
  34. #if defined(HAVE_LONG_LONG) && !defined(longlong2str) && !defined(HAVE_LONGLONG2STR)
  35. /*
  36.   This assumes that longlong multiplication is faster than longlong division.
  37. */
  38. char *longlong2str(longlong val,char *dst,int radix)
  39. {
  40.   char buffer[65];
  41.   register char *p;
  42.   long long_val;
  43.   if (radix < 0)
  44.   {
  45.     if (radix < -36 || radix > -2) return (char*) 0;
  46.     if (val < 0) {
  47.       *dst++ = '-';
  48.       val = -val;
  49.     }
  50.     radix = -radix;
  51.   }
  52.   else
  53.   {
  54.     if (radix > 36 || radix < 2) return (char*) 0;
  55.   }
  56.   if (val == 0)
  57.   {
  58.     *dst++='0';
  59.     *dst='';
  60.     return dst;
  61.   }
  62.   p = &buffer[sizeof(buffer)-1];
  63.   *p = '';
  64.   while ((ulonglong) val > (ulonglong) LONG_MAX)
  65.   {
  66.     ulonglong quo=(ulonglong) val/(uint) radix;
  67.     uint rem= (uint) (val- quo* (uint) radix);
  68.     *--p = _dig_vec_upper[rem];
  69.     val= quo;
  70.   }
  71.   long_val= (long) val;
  72.   while (long_val != 0)
  73.   {
  74.     long quo= long_val/radix;
  75.     *--p = _dig_vec_upper[(uchar) (long_val - quo*radix)];
  76.     long_val= quo;
  77.   }
  78.   while ((*dst++ = *p++) != 0) ;
  79.   return dst-1;
  80. }
  81. #endif
  82. #ifndef longlong10_to_str
  83. char *longlong10_to_str(longlong val,char *dst,int radix)
  84. {
  85.   char buffer[65];
  86.   register char *p;
  87.   long long_val;
  88.   if (radix < 0)
  89.   {
  90.     if (val < 0)
  91.     {
  92.       *dst++ = '-';
  93.       val = -val;
  94.     }
  95.   }
  96.   if (val == 0)
  97.   {
  98.     *dst++='0';
  99.     *dst='';
  100.     return dst;
  101.   }
  102.   p = &buffer[sizeof(buffer)-1];
  103.   *p = '';
  104.   while ((ulonglong) val > (ulonglong) LONG_MAX)
  105.   {
  106.     ulonglong quo=(ulonglong) val/(uint) 10;
  107.     uint rem= (uint) (val- quo* (uint) 10);
  108.     *--p = _dig_vec_upper[rem];
  109.     val= quo;
  110.   }
  111.   long_val= (long) val;
  112.   while (long_val != 0)
  113.   {
  114.     long quo= long_val/10;
  115.     *--p = _dig_vec_upper[(uchar) (long_val - quo*10)];
  116.     long_val= quo;
  117.   }
  118.   while ((*dst++ = *p++) != 0) ;
  119.   return dst-1;
  120. }
  121. #endif