#include "GaudiKernel/xtoa.h"
#include <limits.h>
#include <stdlib.h>
Go to the source code of this file.
char* __cdecl _itoa |
( |
int |
val, |
|
|
char * |
buf, |
|
|
int |
radix |
|
) |
| |
Definition at line 84 of file xtoa.cpp.
86 if ( radix == 10 && val < 0 )
87 xtoa( (
unsigned long)val, buf, radix, 1 );
89 xtoa( (
unsigned long)(
unsigned int)val, buf, radix, 0 );
char* __cdecl _ltoa |
( |
long |
val, |
|
|
char * |
buf, |
|
|
int |
radix |
|
) |
| |
Definition at line 93 of file xtoa.cpp.
95 xtoa( (
unsigned long)val, buf, radix, ( radix == 10 && val < 0 ) );
char* __cdecl _ultoa |
( |
unsigned long |
val, |
|
|
char * |
buf, |
|
|
int |
radix |
|
) |
| |
Definition at line 99 of file xtoa.cpp.
101 xtoa( val, buf, radix, 0 );