]> www.ginac.de Git - cln.git/blob - src/float/lfloat/misc/cl_LF_digits.cc
* */*: Convert encoding from ISO 8859-1 to UTF-8.
[cln.git] / src / float / lfloat / misc / cl_LF_digits.cc
1 // float_digits().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/lfloat.h"
8
9
10 // Implementation.
11
12 #include "cl_LF.h"
13
14 namespace cln {
15
16 MAYBE_INLINE
17 uintC float_digits (const cl_LF& x)
18 {
19         return intDsize*(uintC)(TheLfloat(x)->len);
20 }
21
22 }  // namespace cln