This file is indexed.

/usr/lib/grass74/include/grass/fontcap.h is in grass-dev 7.4.0-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
#ifndef GRASS_FONTCAP_H
#define GRASS_FONTCAP_H

struct GFONT_CAP
{
    char *name;	    /**< Short name for this font face */
    char *longname; /**< Descriptive name for the font face */
    char *path;	    /**< Full path to the file containing this font face */
    int index;	    /**< Index within the file of this font face */
    int type;	    /**< Type of this font face (currently stroke or freetype) */
    char *encoding; /**< Encoding to be used with this font face. */
};

#define GFONT_STROKE 0
#define GFONT_FREETYPE 1
#define GFONT_DRIVER 2

#endif