DCL 4.0
Loading...
Searching...
No Matches
__xtoa.h
Go to the documentation of this file.
1#ifndef __DCL_XTOA_H__
2#define __DCL_XTOA_H__ 20110415
3
4#ifndef __DCL_CONFIG_H__
5#include <dcl/Config.h>
6#endif
7
8__DCL_BEGIN_NAMESPACE
9
14char* __int32toa(int32_t _n, char* _buf, unsigned _base);
15char* __uint32toa(uint32_t _n, char* _buf, unsigned _base);
16char* __int64toa(int64_t _n, char* _buf, unsigned _base);
17char* __uint64toa(uint64_t _n, char* _buf, unsigned _base);
18
19wchar_t* __int32tow(int32_t _n, wchar_t* _buf, unsigned _base);
20wchar_t* __uint32tow(uint32_t _n, wchar_t* _buf, unsigned _base);
21wchar_t* __int64tow(int64_t _n, wchar_t* _buf, unsigned _base);
22wchar_t* __uint64tow(uint64_t _n, wchar_t* _buf, unsigned _base);
23
24__DCL_END_NAMESPACE
25
26#endif // __DCL_XTOA_H__
wchar_t * __int64tow(int64_t _n, wchar_t *_buf, unsigned _base)
Definition __xtoa.cpp:87
wchar_t * __uint64tow(uint64_t _n, wchar_t *_buf, unsigned _base)
Definition __xtoa.cpp:93
wchar_t * __uint32tow(uint32_t _n, wchar_t *_buf, unsigned _base)
Definition __xtoa.cpp:73
char * __int64toa(int64_t _n, char *_buf, unsigned _base)
Definition __xtoa.cpp:47
char * __uint32toa(uint32_t _n, char *_buf, unsigned _base)
Definition __xtoa.cpp:33
char * __uint64toa(uint64_t _n, char *_buf, unsigned _base)
Definition __xtoa.cpp:53
__DCL_BEGIN_NAMESPACE char * __int32toa(int32_t _n, char *_buf, unsigned _base)
Definition __xtoa.cpp:27
wchar_t * __int32tow(int32_t _n, wchar_t *_buf, unsigned _base)
Definition __xtoa.cpp:67