]> www.ginac.de Git - cln.git/blob - src/float/misc/cl_F_idecode.cc
88c2ba9c95b64550c5154439728ec0f2414e7907
[cln.git] / src / float / misc / cl_F_idecode.cc
1 // integer_decode_float().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cl_float.h"
8
9
10 // Implementation.
11
12 #include "cl_F.h"
13
14 #undef MAYBE_INLINE
15 #define MAYBE_INLINE inline
16 #include "cl_SF_idecode.cc"
17 #include "cl_FF_idecode.cc"
18 #include "cl_DF_idecode.cc"
19 #include "cl_LF_idecode.cc"
20
21 const cl_idecoded_float integer_decode_float (const cl_F& x)
22 {
23         floatcase(x
24         ,       return integer_decode_float(x);
25         ,       return integer_decode_float(x);
26         ,       return integer_decode_float(x);
27         ,       return integer_decode_float(x);
28         );
29 }