PURPOSE
: Convert HEX value array to positive integer base 10 number as array of
characters.
SYNTAX
: valueA:CharArray
call fHexAToDecA
RETURNS
: CharArray
Positive integer base 10 value as array of characters equivalent
to passed in HEX array characters.
Empty array on error.
EXAMPLES
:
1B135 HEX array to positive integer
["1","B","1","3","5"] call fHexAToDecA -> ["1","1","0","9","0","1"]
B0 HEX array to positive integer
["B","0"] call fHexAToDecA -> ["1","7","6"]
HISTORY
: CoC bn880 06/03/2003
DEPENDENCIES: CoC_LIBNUMSYS