This file is indexed.

/usr/include/atheme/conf.h is in atheme-services 7.2.9-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
16
17
18
19
20
21
22
23
24
25
26
/*
 * Copyright (C) 2005 William Pitcock, et al.
 * Rights to this code are as documented in doc/LICENSE.
 *
 * Config reader.
 */

#ifndef CONF_H
#define CONF_H

E bool conf_parse(const char *);
E void conf_init(void);
E bool conf_rehash(void);
E bool conf_check(void);

E void init_newconf(void);

/* XXX Unstable module api to add things to the standard conf blocks */
E mowgli_list_t conf_si_table; /* serverinfo{} */
E mowgli_list_t conf_gi_table; /* general{} */
E mowgli_list_t conf_la_table; /* language{} */

#endif

/* vim:cinoptions=>s,e0,n0,f0,{0,}0,^0,=s,ps,t0,c3,+s,(2s,us,)20,*30,gs,hs ts=8 sw=8 noexpandtab
 */