I recently had a need to interpret a DEC 32-bit floating point representation. It differs from the IEEE floating point representations in the number of bits allocated to the exponent and mantissa.
Here's a description of a bunch of floating point formats:
http://www.quadibloc.com/comp/cp0201.htm
I managed to roll my own C++ code to stuff a DEC 32-bit float into an IEEE 32-bit float but was wondering if there were any libraries out there that had tackled this conversion and others already.
I checked boost.org but didn't see any in there.