This file is indexed.

/usr/include/efreet-1/efreet_ini.h is in libefreet-dev 1.0.0-1build1.

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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#ifndef EFREET_INI_H
#define EFREET_INI_H

/**
 * @internal
 * @file efreet_ini.h
 * @brief A simple and fast INI parser
 * @addtogroup Efreet_Ini Efreet_Ini: An INI parser
 *
 * @{
 */

/**
 * Efreet_Ini
 */
typedef struct Efreet_Ini Efreet_Ini;

/**
 * Efreet_Ini
 * @brief Contains all the information about an ini file.
 */
struct Efreet_Ini
{
  Eina_Hash *data;     /**< Hash of string => (Hash of string => string) */
  Eina_Hash *section;  /**< currently selected section */
};

EAPI Efreet_Ini  *efreet_ini_new(const char *file);
EAPI void         efreet_ini_free(Efreet_Ini *ini);
EAPI int          efreet_ini_save(Efreet_Ini *ini, const char *path);

EAPI int          efreet_ini_section_set(Efreet_Ini *ini, const char *section);
EAPI void         efreet_ini_section_add(Efreet_Ini *ini, const char *section);

EAPI const char  *efreet_ini_string_get(Efreet_Ini *ini, const char *key);
EAPI void         efreet_ini_string_set(Efreet_Ini *ini, const char *key,
                                                    const char *value);

EAPI const char  *efreet_ini_localestring_get(Efreet_Ini *ini, const char *key);
EAPI void         efreet_ini_localestring_set(Efreet_Ini *ini, const char *key,
                                                    const char *value);

EAPI unsigned int efreet_ini_boolean_get(Efreet_Ini *ini, const char *key);
EAPI void         efreet_ini_boolean_set(Efreet_Ini *ini, const char *key,
                                                    unsigned int value);

EAPI int          efreet_ini_int_get(Efreet_Ini *ini, const char *key);
EAPI void         efreet_ini_int_set(Efreet_Ini *ini, const char *key, int value);

EAPI double       efreet_ini_double_get(Efreet_Ini *ini, const char *key);
EAPI void         efreet_ini_double_set(Efreet_Ini *ini, const char *key,
                                                    double value);

EAPI void         efreet_ini_key_unset(Efreet_Ini *ini, const char *key);

/**
 * @}
 */

#endif