mcIntToA, mcOffToA — Convert an integer or offset number to ASCII
#include <memcom.h> void mcIntToA(int num, char* s, mcSize len); void mcOffToA(mcOff num, char* s, mcSize len);
mcIntToA
converts an integer
num
to an ASCII string len
digits wide. mcOffToA
converts an offset number
num
to an ASCII string len
digits wide. These functions are equivalent to
mcSPrint
, but are more efficient.