Synopsis
#include <stdlib.h>
char *utoa(unsigned val, char *buf, int radix);
Description

utoa converts val to a string in base radix and places the result in buf.

utoa returns buf as the result.

If radix is greater than 36, the result is undefined.

Portability

utoa is an extension to the standard C library provided by CrossWorks C.

See Also

itoa    ltoa    lltoa    ultoa    ulltoa