This file is indexed.

/usr/include/libwmf/gd/gd_clip.h is in libwmf-dev 0.2.8.4-12.

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
#ifndef GD_CLIP_H
#define GD_CLIP_H 1

#ifdef __cplusplus
extern "C" {
#endif

/* ClipRectangle type for use as part of ClipSet. */
typedef struct { /* point must lie in range: x_min <= x <= x_max, y_min <= y <= y_max */
	int x_min, y_min;
	int x_max, y_max;
} gdClipRectangle, *gdClipRectanglePtr;

/* ClipSet type */
typedef struct {
	int max;
	int count;

	gdClipRectangle* list;
} gdClipSet;

#ifdef __cplusplus
}
#endif

#endif /* GD_CLIP_H */