Main Page | Namespace List | Class Hierarchy | Alphabetical List | Data Structures | File List | Namespace Members | Data Fields | Globals

itoa.h File Reference

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

Included by dependency graph

Go to the source code of this file.

Functions

char * itoa (int, char *, int)
char * _itoa (unsigned, char *, unsigned)


Function Documentation

char* _itoa unsigned  ,
char *  ,
unsigned 
 

Referenced by _itoa(), and itoa().

char* itoa int  ,
char *  ,
int 
 

Definition at line 13 of file itoa.cpp.

References _itoa().

Referenced by PlayGame::evMessage(), Galaxy::evMessage(), Ars::ArsApplication::GetCoordStr(), Parameters::GetDenomination(), HallOfFame::SetupWindow(), and Ars::Window::SetWndText().

00014 {
00015         r = ((r < 2) || (r > 36)) ? 10 : r;
00016         if (i < 0)
00017         {
00018                 *a = '-';
00019                 *_itoa(-i,a+1,r) = 0;
00020         }
00021         else *_itoa(i,a,r) = 0;
00022         return a;
00023 }


Generated on Fri Dec 5 04:06:06 2003 for Borqueror by doxygen 1.3.3