This file is indexed.

/usr/include/libwaei/vocabulary.h is in libwaei-dev 3.6.2-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
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef LW_VOCABULARY_INCLUDED
#define LW_VOCABULARY_INCLUDED

#include <libwaei/word.h>

G_BEGIN_DECLS

struct _LwVocabulary {
  gchar *name;
  GList *items;
  gboolean changed;
  gdouble progress;
};

typedef struct _LwVocabulary LwVocabulary;

#define LW_VOCABULARY(obj) (LwVocabulary*)obj

gchar** lw_vocabulary_get_lists (void);
LwVocabulary* lw_vocabulary_new (const gchar*);
void lw_vocabulary_free (LwVocabulary*);

void lw_vocabulary_save (LwVocabulary*, const gchar*, LwIoProgressCallback);
void lw_vocabulary_load (LwVocabulary*, const gchar*, LwIoProgressCallback);

G_END_DECLS

#endif