This file is indexed.

/usr/lib/grass70/include/grass/display.h is in grass-dev 7.0.3-1build1.

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

#include <grass/gis.h>
#include <grass/raster.h>
#include <grass/symbol.h>

struct color_rgba
{
    unsigned char r, g, b, a;	/* red, green, blue, and alpha */
};

typedef struct color_rgba RGBA_Color;

/* RGBA color alpha presets */
#define RGBA_COLOR_OPAQUE     255
#define RGBA_COLOR_TRANSPARENT  0
#define RGBA_COLOR_NONE         0

enum clip_mode
{
    M_NONE,
    M_CULL,
    M_CLIP,
};

#include <grass/defs/display.h>

#endif /* GRASS_DISPLAY_H */