PURPOSE
: Convert
positive integer base 10 number to alphanumeric number system equivalent
array. (uses characters A-Z, 0-9)
SYNTAX
: value:Integer
call fDecToAlphaA
RETURNS
: CharArray
Equivalent alphanumeric representation of the decimal number
as array of characters.
Empty array on error.
EXAMPLES
:
176 to AlphaNumeric
176 call fDecToAlphaA -> ["E","D"]
2331458 to AlphaNumeric
2331458 call fDecToAlphaA -> ["B","N","8","8","0"]
HISTORY
: CoC bn880 06/03/2003
DEPENDENCIES: CoC_LIBNUMSYS