This file is indexed.

/usr/include/libwaei/edictionary.h is in libwaei-dev 3.6.2-2build2.

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
29
30
31
32
33
34
#ifndef LW_EDICTIONARY_INCLUDED
#define LW_EDICTIONARY_INCLUDED

G_BEGIN_DECLS


//Boilerplate
typedef struct _LwEDictionary LwEDictionary;
typedef struct _LwEDictionaryClass LwEDictionaryClass;
typedef struct _LwEDictionaryPrivate LwEDictionaryPrivate;

#define LW_TYPE_EDICTIONARY              (lw_edictionary_get_type())
#define LW_EDICTIONARY(obj)              (G_TYPE_CHECK_INSTANCE_CAST((obj), LW_TYPE_EDICTIONARY, LwEDictionary))
#define LW_EDICTIONARY_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST((klass), LW_TYPE_EDICTIONARY, LwEDictionaryClass))
#define LW_IS_EDICTIONARY(obj)           (G_TYPE_CHECK_INSTANCE_TYPE((obj), LW_TYPE_EDICTIONARY))
#define LW_IS_EDICTIONARY_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), LW_TYPE_EDICTIONARY))
#define LW_EDICTIONARY_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS((obj), LW_TYPE_EDICTIONARY, LwEDictionaryClass))

struct _LwEDictionary {
  LwDictionary object;
};

struct _LwEDictionaryClass {
  LwDictionaryClass parent_class;
};

//Methods
LwDictionary* lw_edictionary_new (const gchar*);
GType lw_edictionary_get_type (void) G_GNUC_CONST;


G_END_DECLS

#endif