This file is indexed.

/usr/include/cln/dfloat_io.h is in libcln-dev 1.3.4-2.

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
22
23
24
25
26
27
28
29
30
31
// I/O of dfloats.

#ifndef _CL_DFLOAT_IO_H
#define _CL_DFLOAT_IO_H

#include "cln/number_io.h"
#include "cln/dfloat.h"

namespace cln {

inline std::istream& operator>> (std::istream& stream, cl_DF& result)
{
	extern cl_read_flags cl_DF_read_flags;
	extern const cl_F read_float (std::istream&, const cl_read_flags&);
	result = As(cl_DF)(read_float(stream,cl_DF_read_flags));
	return stream;
}

// The following does strictly the same as the general `fprint' for floats.
// It is here only so that people don't need to include <cln/float_io.h>.
inline void fprint (std::ostream& stream, const cl_DF& x)
{
	extern void print_float (std::ostream& stream, const cl_print_flags& flags, const cl_F& z);
	extern cl_print_flags default_print_flags;
	print_float(stream,default_print_flags,x);
}
CL_DEFINE_PRINT_OPERATOR(cl_DF)

}  // namespace cln

#endif /* _CL_DFLOAT_IO_H */