xtoa.h File Reference
#include "GaudiKernel/Kernel.h"
#include <cstdlib>
Go to the source code of this file.
Define Documentation
Definition at line 2 of file xtoa.h.
Definition at line 3 of file xtoa.h.
Function Documentation
| GAUDI_API char* __cdecl _itoa |
( |
int |
val, |
|
|
char * |
buf, |
|
|
int |
radix | |
|
) |
| | |
Definition at line 83 of file xtoa.cpp.
00083 {
00084 if (radix == 10 && val < 0)
00085 xtoa((unsigned long)val, buf, radix, 1);
00086 else
00087 xtoa((unsigned long)(unsigned int)val, buf, radix, 0);
00088 return buf;
00089 }
| GAUDI_API char* __cdecl _ltoa |
( |
long |
val, |
|
|
char * |
buf, |
|
|
int |
radix | |
|
) |
| | |
Definition at line 91 of file xtoa.cpp.
00091 {
00092 xtoa((unsigned long)val, buf, radix, (radix == 10 && val < 0));
00093 return buf;
00094 }
| GAUDI_API char* __cdecl _ultoa |
( |
unsigned long |
val, |
|
|
char * |
buf, |
|
|
int |
radix | |
|
) |
| | |
Definition at line 96 of file xtoa.cpp.
00096 {
00097 xtoa(val, buf, radix, 0);
00098 return buf;
00099 }