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.
19 lines
235 B
19 lines
235 B
// 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
|