This file is indexed.

/usr/include/gfarm/group_info.h is in libgfarm-dev 2.6.15+dfsg-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
struct gfarm_group_info {
	char *groupname;

	int nusers;
	char **usernames;
};

struct gfarm_group_names {
	int ngroups;
	char **groupnames;
};

void gfarm_group_info_free(struct gfarm_group_info *);
void gfarm_group_info_free_all(int, struct gfarm_group_info *);
void gfarm_group_names_free(struct gfarm_group_names *);