This file is indexed.

/usr/include/libwaei/engine-data.h is in libwaei-dev 3.2.0b1-1.

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

#define LW_ENGINEDATA(object) (LwEngineData*) object

struct _LwEngineData {
    LwSearchItem *item;
    gboolean exact;
};
typedef struct _LwEngineData LwEngineData;

LwEngineData* lw_enginedata_new (LwSearchItem*, gboolean);
void lw_enginedata_free (LwEngineData*);

#endif