fASCIIAToDecA

PURPOSE : Convert ASCII value array to positive integer base 10 number as array of characters.
SYNTAX : valueA:CharArray call fASCIIAToDecA
RETURNS : CharArray Array of character representation of positive integer base 10 value equivalent to passed in ASCII array characters.
Empty array on error.

EXAMPLES :
A ASCII value to positive integer character array
["A"] call fASCIIAToDecA -> ["6","5"]

. ASCII value to positive integer
["."] call fASCIIAToDecA -> ["4","6"]

HE ASCII value to positive integer
["H","E"] call fASCIIAToDecA -> ["1","8","5","0","1"]

HISTORY : CoC bn880 06/03/2003
DEPENDENCIES: CoC_LIBNUMSYS