This file is indexed.

/usr/include/fcitx-utils/stringmap.h is in fcitx-libs-dev 1:4.2.9.1-1ubuntu1.

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
#ifndef FCITX_UTILS_STRINGMAP_H
#define FCITX_UTILS_STRINGMAP_H
#include <fcitx-utils/utils.h>

typedef struct _FcitxStringMap FcitxStringMap;

FcitxStringMap* fcitx_string_map_new(const char* str, char delim);

void fcitx_string_map_from_string(FcitxStringMap* map, const char* str, char delim);

boolean fcitx_string_map_get(FcitxStringMap *map, const char *key,
                             boolean _default);

void fcitx_string_map_set(FcitxStringMap* map, const char* key, boolean value);

void fcitx_string_map_clear(FcitxStringMap* map);

char* fcitx_string_map_to_string(FcitxStringMap* map, char delim);

void fcitx_string_map_remove(FcitxStringMap* map, const char* key);

void fcitx_string_map_free(FcitxStringMap* map);

#endif // FCITX_UTILS_STRINGMAP_H