This file is indexed.

/usr/include/gfarm/gfs_glob.h is in libgfarm-dev 2.6.15+dfsg-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
typedef struct {
	unsigned char *array;
	int length, size;
} gfs_glob_t;

#define GFS_GLOB_ARRAY(glob)		(glob).array
#define GFS_GLOB_ELEM(glob, i)		(glob).array[i]
#define gfs_glob_length(glob)		(glob)->length
#define gfs_glob_elem(glob, i) \
	GFS_GLOB_ELEM(*(glob), i)

gfarm_error_t gfs_glob(const char *, gfarm_stringlist *, gfs_glob_t *);
gfarm_error_t gfs_glob_init(gfs_glob_t *);
void gfs_glob_free(gfs_glob_t *);
gfarm_error_t gfs_glob_add(gfs_glob_t *, int);