Go to the source code of this file.
Functions | |
| char * | _itoa (unsigned i, char *a, unsigned r) |
| char * | itoa (int i, char *a, int r) |
|
||||||||||||||||
|
Definition at line 5 of file itoa.cpp. References _itoa().
00006 {
00007 if (i/r > 0) a = _itoa(i/r,a,r);
00008 *a =
00009 "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"[i%r];
00010 return a+1;
00011 }
|
|
||||||||||||||||
|
Definition at line 13 of file itoa.cpp. References _itoa(). Referenced by Galaxy::evMessage(), PlayGame::evMessage(), Ars::ArsApplication::GetCoordStr(), Parameters::GetDenomination(), HallOfFame::SetupWindow(), and Ars::Window::SetWndText().
|
1.3.3