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