// max().

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

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


// Implementation.

namespace cln {

const cl_I max (const cl_I& x, const cl_I& y)
{
	return (x >= y ? x : y);
}

}  // namespace cln


syntax highlighted by Code2HTML, v. 0.9.1