This file is indexed.

/usr/lib/grass72/include/grass/manage.h is in grass-dev 7.2.0-2.

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

struct list
{
    const char **element;	/* list of related elements */
    char *alias;		/* element alias */
    const char **desc;		/* description of elements */
    char *text;			/* menu text */
    int nelem;			/* number of elements */
    char status;
    char *mainelem;		/* main element */
    char *maindesc;		/* main element description */
};

#define REMOVE 1
#define RENAME 2
#define COPY   3
#define LIST   4

#include <grass/gis.h>

#include <grass/defs/manage.h>

#endif