fDecToASCII

PURPOSE : Convert positive integer base 10 number to ASCII character equivalent string.
SYNTAX : value:Integer call fDecToASCII
RETURNS : String Equivalent ASCII character representation of the decimal number.
Empty string on error.
EXAMPLES :
65 to ASCII string
65 call fDecToASCII -> "A"

4411203 to ASCII string
4411203 call fDecToASCII -> "COC"

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