![]() |
|
|
Generated: 18 Jul 2008 |
#include <cstdlib>
Include dependency graph for xtoa.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Defines | |
| #define | __cdecl |
| #define | __stdcall |
| #define | _ecvt ecvt |
Functions | |
| char *__cdecl | _itoa (int val, char *buf, int radix) |
| char *__cdecl | _ltoa (long val, char *buf, int radix) |
| char *__cdecl | _ultoa (unsigned long val, char *buf, int radix) |
| char* __cdecl _itoa | ( | int | val, | |
| char * | buf, | |||
| int | radix | |||
| ) |
Definition at line 83 of file xtoa.cpp.
References xtoa().
Referenced by HistogramSvc::_STR(), DataStreamTool::addStream(), analyzeItem(), NTupleSvc::book(), AIDATupleSvc::book(), DataStreamTool::connectStream(), RootHistCnv::RConverter::createAddress(), HbookCnv::HConverter::createAddress(), NTupleSvc::createDirectory(), DataSvc::findObject(), DataSvc::registerObject(), MessageSvc::reportMessage(), DataSvc::retrieveObject(), DataSvc::unregisterObject(), and GFALDataStreamTool::updateStreams().
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 }
| char* __cdecl _ltoa | ( | long | val, | |
| char * | buf, | |||
| int | radix | |||
| ) |
| char* __cdecl _ultoa | ( | unsigned long | val, | |
| char * | buf, | |||
| int | radix | |||
| ) |