You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
298 B
21 lines
298 B
// float_digits().
|
|
|
|
// General includes.
|
|
#include "cl_sysdep.h"
|
|
|
|
// Specification.
|
|
#include "cln/lfloat.h"
|
|
|
|
|
|
// Implementation.
|
|
|
|
#include "cl_LF.h"
|
|
|
|
namespace cln {
|
|
|
|
CL_INLINE uintC CL_INLINE_DECL(float_digits) (const cl_LF& x)
|
|
{
|
|
return intDsize*(uintC)(TheLfloat(x)->len);
|
|
}
|
|
|
|
} // namespace cln
|