]> www.ginac.de Git - cln.git/blob - src/float/sfloat/misc/cl_SF_digits.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / float / sfloat / misc / cl_SF_digits.cc
1 // float_digits().
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 uintL float_digits (const cl_SF& x)
18 {
19         unused x;
20         return SF_mant_len+1; // 17
21 }
22
23 }  // namespace cln