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.
24 lines
388 B
24 lines
388 B
// Global variables for cl_LF.
|
|
|
|
// General includes.
|
|
#include "cl_sysdep.h"
|
|
|
|
CL_PROVIDE(cl_LF_globals)
|
|
|
|
// Specification.
|
|
#include "cln/number.h"
|
|
|
|
|
|
// Implementation.
|
|
|
|
#include "cl_LF.h"
|
|
#include "cl_LF_impl.h"
|
|
|
|
namespace cln {
|
|
|
|
// Only needed for the default constructor of cl_LF.
|
|
const cl_LF cl_LF_0 = encode_LF0(LF_minlen); // 0.0L0
|
|
|
|
} // namespace cln
|
|
|
|
CL_PROVIDE_END(cl_LF_globals)
|