This file is indexed.

/usr/include/complearn-1.0/complearn/complearn-environment.h is in libcomplearn1-headers 1.1.7-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
 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
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/* Generated by GOB (v2.0.15)   (do not edit directly) */

#include <glib.h>
#include <glib-object.h>


#include <glib.h>
#include <glib/gstdio.h>
#include "real-compressor.h"

void complearn_init(void);

#ifndef __COMPLEARN_ENVIRONMENT_H__
#define __COMPLEARN_ENVIRONMENT_H__

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */


/*
 * Type checking and casting macros
 */
#define COMPLEARN_TYPE_ENVIRONMENT	(complearn_environment_get_type())
#define COMPLEARN_ENVIRONMENT(obj)	G_TYPE_CHECK_INSTANCE_CAST((obj), complearn_environment_get_type(), CompLearnEnvironment)
#define COMPLEARN_ENVIRONMENT_CONST(obj)	G_TYPE_CHECK_INSTANCE_CAST((obj), complearn_environment_get_type(), CompLearnEnvironment const)
#define COMPLEARN_ENVIRONMENT_CLASS(klass)	G_TYPE_CHECK_CLASS_CAST((klass), complearn_environment_get_type(), CompLearnEnvironmentClass)
#define COMPLEARN_IS_ENVIRONMENT(obj)	G_TYPE_CHECK_INSTANCE_TYPE((obj), complearn_environment_get_type ())

#define COMPLEARN_ENVIRONMENT_GET_CLASS(obj)	G_TYPE_INSTANCE_GET_CLASS((obj), complearn_environment_get_type(), CompLearnEnvironmentClass)

/* Private structure type */
typedef struct _CompLearnEnvironmentPrivate CompLearnEnvironmentPrivate;

/*
 * Main object structure
 */
#ifndef __TYPEDEF_COMPLEARN_ENVIRONMENT__
#define __TYPEDEF_COMPLEARN_ENVIRONMENT__
typedef struct _CompLearnEnvironment CompLearnEnvironment;
#endif
struct _CompLearnEnvironment {
	GObject __parent__;
	/*< private >*/
	CompLearnEnvironmentPrivate *_priv;
};

/*
 * Class definition
 */
typedef struct _CompLearnEnvironmentClass CompLearnEnvironmentClass;
struct _CompLearnEnvironmentClass {
	GObjectClass __parent__;
};


/*
 * Public methods
 */
GType	complearn_environment_get_type	(void);
GObject * 	complearn_environment_new	(void);
gchar * 	complearn_environment_get_module_path	(CompLearnEnvironment * self);
void 	complearn_environment_set_module_path	(CompLearnEnvironment * self,
					gchar * val);
gboolean 	complearn_environment_get_verbose	(CompLearnEnvironment * self);
void 	complearn_environment_set_verbose	(CompLearnEnvironment * self,
					gboolean val);
gint 	complearn_environment_get_nice_level	(CompLearnEnvironment * self);
void 	complearn_environment_set_nice_level	(CompLearnEnvironment * self,
					gint val);
CompLearnEnvironment * 	complearn_environment_top	(void);
char * 	complearn_environment_version	(void);
CompLearnRealCompressor * 	complearn_environment_load_compressor_named	(const char * name);
GObject * 	complearn_environment_get_nameable	(const char * name);
void 	complearn_environment_register_nameable	(const char * name,
					GObject * val);
void 	complearn_environment_register_compressor_and_nameable	(GObject * obj);
void 	complearn_environment_register_compressor	(CompLearnRealCompressor * rc);
int 	complearn_environment_compressor_count	(void);
char ** 	complearn_environment_compressor_list	(void);
GString * 	complearn_environment_lib_version	(void);
void 	complearn_environment_make_home_config_file	(void);
char * 	complearn_environment_get_home_config_filename	(void);
char ** 	complearn_environment_get_config_filename_list	(void);
void 	complearn_environment_apply_configs	(gboolean env_part,
					gboolean other_part);
void 	complearn_environment_show_properties	(void);
char * 	complearn_environment_find_name	(GObject * obj);
void 	complearn_environment_register_property	(GObject * obj,
					GParamSpec * gps,
					GValue * v);
gboolean 	complearn_environment_check_homedir_subdir	(void);
void 	complearn_environment_glog_func	(const gchar * log_domain,
					GLogLevelFlags log_level,
					const gchar * message,
					gpointer user_data);
void 	complearn_environment_handle_log_domain	(const gchar * log_domain);
void 	complearn_environment_standard_initialization	(void);
void 	complearn_environment_adjust_parameter	(GObject * obj,
					const char * kname,
					const char * val);
void 	complearn_environment_apply_keyfile	(GKeyFile * kf,
					GObject * obj);
void 	complearn_environment_print_version	(void);
void 	complearn_environment_set_verbose_mode	(void);
GString * 	complearn_environment_convert_to_hex	(GString * inp);

/*
 * Argument wrapping macros
 */
#if defined(__GNUC__) && !defined(__STRICT_ANSI__)
#define COMPLEARN_ENVIRONMENT_PROP_MODULE_PATH(arg)    	"module_path", __extension__ ({gchar *z = (arg); z;})
#define COMPLEARN_ENVIRONMENT_GET_PROP_MODULE_PATH(arg)	"module_path", __extension__ ({gchar **z = (arg); z;})
#define COMPLEARN_ENVIRONMENT_PROP_VERBOSE(arg)    	"verbose", __extension__ ({gboolean z = (arg); z;})
#define COMPLEARN_ENVIRONMENT_GET_PROP_VERBOSE(arg)	"verbose", __extension__ ({gboolean *z = (arg); z;})
#define COMPLEARN_ENVIRONMENT_PROP_NICE_LEVEL(arg)    	"nice_level", __extension__ ({gint z = (arg); z;})
#define COMPLEARN_ENVIRONMENT_GET_PROP_NICE_LEVEL(arg)	"nice_level", __extension__ ({gint *z = (arg); z;})
#else /* __GNUC__ && !__STRICT_ANSI__ */
#define COMPLEARN_ENVIRONMENT_PROP_MODULE_PATH(arg)    	"module_path",(gchar *)(arg)
#define COMPLEARN_ENVIRONMENT_GET_PROP_MODULE_PATH(arg)	"module_path",(gchar **)(arg)
#define COMPLEARN_ENVIRONMENT_PROP_VERBOSE(arg)    	"verbose",(gboolean )(arg)
#define COMPLEARN_ENVIRONMENT_GET_PROP_VERBOSE(arg)	"verbose",(gboolean *)(arg)
#define COMPLEARN_ENVIRONMENT_PROP_NICE_LEVEL(arg)    	"nice_level",(gint )(arg)
#define COMPLEARN_ENVIRONMENT_GET_PROP_NICE_LEVEL(arg)	"nice_level",(gint *)(arg)
#endif /* __GNUC__ && !__STRICT_ANSI__ */


#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif