This file is indexed.

/usr/lib/grass70/include/grass/defs/btree.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
#ifndef GRASS_BTREEDEFS_H
#define GRASS_BTREEDEFS_H

/* create.c */
int btree_create(BTREE *, int (*)(const void *, const void *), int);

/* find.c */
int btree_find(const BTREE *, const void *, void **);

/* free.c */
int btree_free(BTREE *);

/* next.c */
int btree_next(BTREE *, void **, void **);

/* rewind.c */
int btree_rewind(BTREE *);

/* update.c */
int btree_update(BTREE *, const void *, int, const void *, int);

#endif