This file is indexed.

/usr/include/cln/null_ring.h is in libcln-dev 1.3.2-1.1.

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
// Built-in null ring.

#ifndef _CL_NULL_RING_H
#define _CL_NULL_RING_H

#include "cln/ring.h"

namespace cln {

class cl_null_ring : public cl_ring { public: cl_null_ring (); };
extern const cl_null_ring cl_0_ring;		// math. {0}

class cl_0_ring_init_helper
{
	static int count;
public:
	cl_0_ring_init_helper();
	~cl_0_ring_init_helper();
};
static cl_0_ring_init_helper cl_0_ring_init_helper_instance;

}  // namespace cln

#endif /* _CL_NULL_RING_H */