fDecToOctA

PURPOSE : Convert positive integer base 10 number to Octal equivalent array of characters.
SYNTAX : value: Integer call fDecToOctA
RETURNS : CharArray Equivalent Octal representation of the decimal number as array of characters.
Empty array on error.
EXAMPLE :
176 to Octal
176 call fDecToOctA -> ["2","6","0"]

12245997 to Octal
12245997 call fDecToOctA -> ["5","6","5","5","5","7","5","5"]

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