]> www.ginac.de Git - cln.git/blob - src/float/ffloat/elem/cl_FF_zerop.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / float / ffloat / elem / cl_FF_zerop.cc
1 // zerop().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/ffloat.h"
8
9
10 // Implementation.
11
12 #include "cl_FF.h"
13
14 namespace cln {
15
16 MAYBE_INLINE
17 cl_boolean zerop (const cl_FF& x)
18 {
19         return (cl_boolean) (cl_ffloat_value(x) == 0);
20 }
21
22 }  // namespace cln