// plus1().

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

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


// Implementation.

#include "cl_LF.h"

namespace cln {

ALL_cl_LF_OPERATIONS_SAME_PRECISION()

const cl_LF plus1 (const cl_LF& x)
{
	return x + cl_I_to_LF(cl_I(1),TheLfloat(x)->len);
}

}  // namespace cln


syntax highlighted by Code2HTML, v. 0.9.1