PURPOSE
: Convert positive integer base 10 number to ASCII character equivalent
array of characters.
SYNTAX
: value:Integer
call
fDecToASCIIA
RETURNS
: CharArray
Equivalent ASCII character representation of the decimal number
as array of characters.
Empty array on error.
EXAMPLES
:
65 to ASCII array
65 call fDecToASCIIA -> ["A"]
4411203 to ASCII array
4411203 call fDecToASCIIA -> ["C","O","C"]
HISTORY
: CoC bn880 06/03/2003
DEPENDENCIES: CoC_LIBNUMSYS