file name: itoa.cpp
classification: evaluation
contents: function itoa()
use: implementation of itoa() if DOS_SIM
is not defined
The file is needed for the dummy evaluation in evalsys.cpp.
The same implementation can be found in general.cpp,
where it is used for the simulation. Since general.cpp
contains many things more than itoa(), which are not needed in
the evaluation, the code was copied into an own file.
char *itoa
(int value, char *buffer, int radix): Converts the value value
in base radix to a string and writes the result into buffer.
A pointer to that buffer is returned. If radix < 2 or radix
> 36, NULL is returned and nothing happens.