C
void ultoa( DWORD Value, BYTE* Buffer );
Description
C32 < 1.12 and C30 < v3.25 need this 2 parameter stack implemented function
Converts a 32-bit unsigned integer to a null-terminated decimal string.
Preconditions
None
Parameters
Parameters |
Description |
Value |
The number to be converted |
Buffer |
Pointer in which to store the converted string |
Returns
None
************************************************************************
HI-TECH PICC-18 PRO 9.63, C30 v3.25, and C32 v1.12 already have a ultoa() library function C18 already has a ultoa() function that more-or-less matches this one C32 < 1.12 and C30 < v3.25 need this function