]> www.ginac.de Git - cln.git/blob - src/float/sfloat/elem/cl_SF_minusp.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / float / sfloat / elem / cl_SF_minusp.cc
1 // minusp().
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 cl_boolean minusp (const cl_SF& x)
18 {
19         return (cl_boolean) ((x.word & bit(SF_sign_shift)) != 0);
20 }
21
22 }  // namespace cln