]> www.ginac.de Git - cln.git/blob - src/float/transcendental/cl_F_ln10_f.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / float / transcendental / cl_F_ln10_f.cc
1 // cl_ln10().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cl_F_tran.h"
8
9
10 // Implementation.
11
12 #include "cl_F.h"
13
14 namespace cln {
15
16 const cl_F cl_ln10 (float_format_t f)
17 {
18         floatformatcase((uintL)f
19         ,       return cl_SF_ln10;
20         ,       return cl_FF_ln10;
21         ,       return cl_DF_ln10;
22         ,       return cl_ln10(len);
23         );
24 }
25
26 }  // namespace cln