PURPOSE
: Convert
positive integer base 10 number to Hex equivalent string.
SYNTAX
: value: Integer
call fDecToHex
RETURNS
: String
Equivalent HEX representation of the decimal number.
Empty string on error.
EXAMPLES
:
176 to HEX
176 call fDecToHex -> "B0"
12245997 to HEX
12245997 call fDecToHex -> "BADBED"
HISTORY
: CoC bn880 06/03/2003
DEPENDENCIES: CoC_LIBNUMSYS