]> www.ginac.de Git - cln.git/blob - src/float/lfloat/elem/cl_LF_zerop.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / float / lfloat / elem / cl_LF_zerop.cc
1 // zerop().
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 cl_boolean zerop (const cl_LF& x)
18 {
19         return (cl_boolean) (TheLfloat(x)->expo == 0);
20 }
21
22 }  // namespace cln