This file is indexed.

/usr/include/irssi/src/core/modules-load.h is in irssi-dev 1.0.5-1ubuntu4.

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

#include "modules.h"

/* Load module - automatically tries to load also the related non-core
   modules given in `prefixes' (like irc, fe, fe_text, ..) */
int module_load(const char *path, char **prefixes);

/* Load a sub module. */
int module_load_sub(const char *path, const char *submodule, char **prefixes);

void module_unload(MODULE_REC *module);
void module_file_unload(MODULE_FILE_REC *file);

#endif