1
/* Copyright (C) 2000 MySQL AB
3
This program is free software; you can redistribute it and/or modify
4
it under the terms of the GNU General Public License as published by
5
the Free Software Foundation; version 2 of the License.
7
This program is distributed in the hope that it will be useful,
8
but WITHOUT ANY WARRANTY; without even the implied warranty of
9
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
GNU General Public License for more details.
12
You should have received a copy of the GNU General Public License
13
along with this program; if not, write to the Free Software
14
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
16
#include <my_global.h>
20
_dig_vec arrays are public because they are used in several outer places.
22
char _dig_vec_upper[] =
23
"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
24
char _dig_vec_lower[] =
25
"0123456789abcdefghijklmnopqrstuvwxyz";
29
Convert integer to its string representation in given scale of notation.
33
val - value to convert
34
dst - points to buffer where string representation should be stored
35
radix - radix of scale of notation
36
upcase - set to 1 if we should use upper-case digits
39
Converts the (long) integer value to its character form and moves it to
40
the destination buffer followed by a terminating NUL.
41
If radix is -2..-36, val is taken to be SIGNED, if radix is 2..36, val is
42
taken to be UNSIGNED. That is, val is signed if and only if radix is.
43
All other radixes treated as bad and nothing will be changed in this case.
45
For conversion to decimal representation (radix is -10 or 10) one can use
46
optimized int10_to_str() function.
49
Pointer to ending NUL character or NullS if radix is bad.
53
int2str(register long int val, register char *dst, register int radix,
59
char *dig_vec= upcase ? _dig_vec_upper : _dig_vec_lower;
60
ulong uval= (ulong) val;
64
if (radix < -36 || radix > -2)
69
/* Avoid integer overflow in (-val) for LONGLONG_MIN (BUG#31799). */
70
uval = (ulong)0 - uval;
74
else if (radix > 36 || radix < 2)
78
The slightly contorted code which follows is due to the fact that
79
few machines directly support unsigned long / and %. Certainly
80
the VAX C compiler generates a subroutine call. In the interests
81
of efficiency (hollow laugh) I let this happen for the first digit
82
only; after that "val" will be in range so that signed integer
83
division will do. Sorry 'bout that. CHECK THE CODE PRODUCED BY
84
YOUR C COMPILER. The first % and / should be unsigned, the second
85
% and / signed, but C compilers tend to be extraordinarily
86
sensitive to minor details of style. This works on a VAX, that's
89
p = &buffer[sizeof(buffer)-1];
91
new_val= uval / (ulong) radix;
92
*--p = dig_vec[(uchar) (uval- (ulong) new_val*(ulong) radix)];
99
*--p = dig_vec[res.rem];
106
*--p = dig_vec[(uchar) (val-new_val*radix)];
110
while ((*dst++ = *p++) != 0) ;
116
Converts integer to its string representation in decimal notation.
120
val - value to convert
121
dst - points to buffer where string representation should be stored
122
radix - flag that shows whenever val should be taken as signed or not
125
This is version of int2str() function which is optimized for normal case
126
of radix 10/-10. It takes only sign of radix parameter into account and
127
not its absolute value.
130
Pointer to ending NUL character.
133
char *int10_to_str(long int val,char *dst,int radix)
138
unsigned long int uval = (unsigned long int) val;
140
if (radix < 0) /* -10 */
145
/* Avoid integer overflow in (-val) for LONGLONG_MIN (BUG#31799). */
146
uval = (unsigned long int)0 - uval;
150
p = &buffer[sizeof(buffer)-1];
152
new_val= (long) (uval / 10);
153
*--p = '0'+ (char) (uval - (unsigned long) new_val * 10);
159
*--p = '0' + (char) (val-new_val*10);
162
while ((*dst++ = *p++) != 0) ;