- Function
Convert an unsigned long integer into a string.
- Header
- Declaration
char* __fastcall__ ultoa (unsigned long val, char* buf, int radix);- Description
itoaconverts the unsigned long integervalinto a string usingradixas the base.- Limits
- There are no provisions to prevent a buffer overflow.
- The function is non standard, so it is not available in strict ANSI mode. You should probably use
sprintfinstead.- The function is only available as fastcall function, so it may only be used in presence of a prototype.
- Availability
cc65
- See also
- Example
None.