// ftruncate2().

// General includes.
#include "cl_sysdep.h"

// Specification.
#include "cln/float.h"


// Implementation.

#include "cl_F.h"
#include "cln/sfloat.h"
#include "cln/ffloat.h"
#include "cln/dfloat.h"
#include "cln/lfloat.h"
#include "cl_LF.h"

namespace cln {

const cl_F_fdiv_t ftruncate2 (const cl_F& x)
{
#if 0 // 3 type dispatches
	var cl_F q = ftruncate(x);
	return cl_F_fdiv_t(q,x-q);
#else // 1 type dispatch
	floatcase(x
	,	var cl_SF q = ftruncate(x); return cl_F_fdiv_t(q,x-q);
	,	var cl_FF q = ftruncate(x); return cl_F_fdiv_t(q,x-q);
	,	var cl_DF q = ftruncate(x); return cl_F_fdiv_t(q,x-q);
	,	var cl_LF q = ftruncate(x); return cl_F_fdiv_t(q,LF_LF_minus_LF(x,q));
	);
#endif
}

}  // namespace cln


syntax highlighted by Code2HTML, v. 0.9.1