You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
590 B
32 lines
590 B
// integer_decode_float().
|
|
|
|
// General includes.
|
|
#include "cl_sysdep.h"
|
|
|
|
// Specification.
|
|
#include "cln/float.h"
|
|
|
|
|
|
// Implementation.
|
|
|
|
#include "cl_F.h"
|
|
|
|
#include "cl_inline.h"
|
|
#include "cl_SF_idecode.cc"
|
|
#include "cl_FF_idecode.cc"
|
|
#include "cl_DF_idecode.cc"
|
|
#include "cl_LF_idecode.cc"
|
|
|
|
namespace cln {
|
|
|
|
const cl_idecoded_float CL_FLATTEN integer_decode_float (const cl_F& x)
|
|
{
|
|
floatcase(x
|
|
, return integer_decode_float_inline(x);
|
|
, return integer_decode_float_inline(x);
|
|
, return integer_decode_float_inline(x);
|
|
, return integer_decode_float_inline(x);
|
|
);
|
|
}
|
|
|
|
} // namespace cln
|