5#define __DCL_INTERNAL__
13 #define __int64 long int
15 #define __int64 long long int
22#define XTOA __int32toa_internal
29 __int32toa_internal((
unsigned __int32) _n, _buf, _base, (_base == 10 && _n < 0));
35 __int32toa_internal(_n, _buf, _base, 0);
42#define XTOA __int64toa_internal
49 __int64toa_internal((
unsigned __int64) _n, _buf, _base, (_base == 10 && _n < 0));
55 __int64toa_internal(_n, _buf, _base, 0);
62#define XTOA __int32tow_internal
67wchar_t*
__int32tow(int32_t _n,
wchar_t* _buf,
unsigned _base)
69 __int32tow_internal((
unsigned __int32) _n, _buf, _base, (_base == 10 && _n < 0));
73wchar_t*
__uint32tow(uint32_t _n,
wchar_t* _buf,
unsigned _base)
75 __int32tow_internal(_n, _buf, _base, 0);
82#define XTOA __int64tow_internal
87wchar_t*
__int64tow(int64_t _n,
wchar_t* _buf,
unsigned _base)
89 __int64tow_internal((
unsigned __int64) _n, _buf, _base, (_base == 10 && _n < 0));
93wchar_t*
__uint64tow(uint64_t _n,
wchar_t* _buf,
unsigned _base)
95 __int64tow_internal(_n, _buf, _base, 0);
wchar_t * __int64tow(int64_t _n, wchar_t *_buf, unsigned _base)
wchar_t * __uint64tow(uint64_t _n, wchar_t *_buf, unsigned _base)
wchar_t * __uint32tow(uint32_t _n, wchar_t *_buf, unsigned _base)
char * __int64toa(int64_t _n, char *_buf, unsigned _base)
char * __int32toa(int32_t _n, char *_buf, unsigned _base)
char * __uint32toa(uint32_t _n, char *_buf, unsigned _base)
char * __uint64toa(uint64_t _n, char *_buf, unsigned _base)
wchar_t * __int32tow(int32_t _n, wchar_t *_buf, unsigned _base)