fDecToOct

PURPOSE : Convert positive integer base 10 number to Octal equivalent string.
SYNTAX : value: Integer call fDecToOct
RETURNS : String Equivalent Octal representation of the decimal number.
Empty string on error.
EXAMPLE :
176 to Octal
176 call fDecToOct -> "260"

12245997 to Octal
12245997 call fDecToOct -> "56555755"

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