/usr/include/cln/floatformat.h is in libcln-dev 1.3.3-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | // Floating point format specifiers.
#ifndef _CL_FLOATFORMAT_H
#define _CL_FLOATFORMAT_H
#include "cln/types.h"
namespace cln {
// Float format specifier type. (Float mantissa precision in bits.)
enum float_format_t {
float_format_sfloat = 17,
float_format_ffloat = 24,
float_format_dfloat = 53,
float_format_lfloat_min = ((53+intDsize-1)/intDsize)*intDsize, // = round_up(53,intDsize)
float_format_lfloat_max = ~((sintE)(1) << (intEsize-1)) // force correct underlying type of float_format_t
};
} // namespace cln
#endif /* _CL_FLOATFORMAT_H */
|