#include <precomp.h>
Go to the source code of this file.
◆ _i64toa()
Definition at line 19 of file witoa.c.
20{
22 int negative;
25 int digit;
26
27 if (
value < 0 && radix == 10) {
28 negative = 1;
30 } else {
31 negative = 0;
33 }
34
37
38 do {
41 if (digit < 10) {
43 } else {
44 *--
pos =
'a' + digit - 10;
45 }
47
48 if (negative) {
50 }
51
54}
#define memcpy(s1, s2, n)
◆ _ui64toa()
Definition at line 60 of file witoa.c.
61{
64 int digit;
65
68
69 do {
70 digit =
value % radix;
72 if (digit < 10) {
74 } else {
75 *--
pos =
'a' + digit - 10;
76 }
78
81}