]> www.ginac.de Git - cln.git/blob - src/float/sfloat/misc/cl_SF_exponent.cc
Don't generate cln.texi from cln.tex any more.
[cln.git] / src / float / sfloat / misc / cl_SF_exponent.cc
1 // float_exponent().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/sfloat.h"
8
9
10 // Implementation.
11
12 #include "cl_SF.h"
13
14 namespace cln {
15
16 MAYBE_INLINE
17 sintE float_exponent (const cl_SF& x)
18 {
19         var uintL uexp = SF_uexp(x);
20         if (uexp==0) { return 0; }
21         return (sintL)(uexp - SF_exp_mid);
22 }
23
24 }  // namespace cln