This file is indexed.

/usr/include/cloog/input.h is in libcloog-ppl-dev 0.16.1-8.

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
#ifndef CLOOG_INPUT_H
#define CLOOG_INPUT_H

#if defined(__cplusplus)
extern "C" {
#endif 

struct clooginput {
	CloogDomain *context;
	CloogUnionDomain *ud;
};
typedef struct clooginput CloogInput;

CloogInput *cloog_input_read(FILE *file, CloogOptions *options);
CloogInput *cloog_input_alloc(CloogDomain *context, CloogUnionDomain *ud);
void cloog_input_free(CloogInput *input);

void cloog_input_dump_cloog(FILE *file, CloogInput *input, CloogOptions *opt);

#if defined(__cplusplus)
}
#endif 

#endif