#include <stdlib.h>
char *ultoa(unsigned long val, char *buf, int radix);
ultoa converts val to a string in base radix and places the result in buf.
ultoa returns buf as the result.
If radix is greater than 36, the result is undefined.
ultoa is an extension to the standard C library provided by CrossWorks C.