This file is indexed.

/usr/include/bglibs/dict/load.h is in libbg1-dev 1.106-3.

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

#include <dict/dict.h>

extern int dict_load_list(dict*, const char* filename,  int mustexist,
			  int (*xform)(str*));
extern int dict_load_map(dict*, const char* filename, int mustexist, char sep,
			 int (*keyxform)(str*), int (*valxform)(str*));

#endif