This file is indexed.

/usr/include/elektra/kdbmodule.h is in libelektra-dev 0.8.14-5.

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 KDBLIBLOADER_H
#define KDBLIBLOADER_H

#include <kdb.h>
#include <kdbplugin.h>

#ifdef __cplusplus
namespace ckdb {
extern "C" {
#endif

/* The pointer to a function which will create a plugin */
typedef Plugin *(*elektraPluginFactory) (void);

int elektraModulesInit (KeySet *modules, Key *error);
elektraPluginFactory elektraModulesLoad (KeySet *modules, const char *name, Key *error);
int elektraModulesClose (KeySet *modules, Key *error);

#ifdef __cplusplus
}
}
#endif

#endif /* KDBLIBLOADER_H */