fDecToBinary

PURPOSE : Convert positive integer base 10 number to binary number system equivalent string.
SYNTAX : value:Integer call fDecToBinary
RETURNS : String Equivalent binary representation of the decimal number as string.
Empty string on error.
EXAMPLES :
176 to Binary
176 call fDecToBinary -> "10110000"

2331458 to Binary
2331458 call fDecToBinary -> "1000111001001101000010"

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