This file is indexed.

/usr/include/gexiv2/gexiv2-log.h is in libgexiv2-dev 0.4.1-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
/*
 * gexiv2-log.h
 *
 * Author(s)
 * 	Jim Nelson <jim@yorba.org>
 *
 * This is free software. See COPYING for details.
 */

#ifndef __GEXIV2_LOG_H__
#define __GEXIV2_LOG_H__

#include <glib.h>

G_BEGIN_DECLS

typedef enum {
	GEXIV2_LOG_LEVEL_DEBUG	= 0,
	GEXIV2_LOG_LEVEL_INFO	= 1,
	GEXIV2_LOG_LEVEL_WARN	= 2,
	GEXIV2_LOG_LEVEL_ERROR	= 3,
	GEXIV2_LOG_LEVEL_MUTE	= 4
} GExiv2LogLevel;

typedef void (*GExiv2LogHandler)(GExiv2LogLevel level, const gchar *msg);

GExiv2LogLevel		gexiv2_log_get_level(void);
void				gexiv2_log_set_level(GExiv2LogLevel level);
GExiv2LogHandler	gexiv2_log_get_handler(void);
GExiv2LogHandler	gexiv2_log_get_default_handler(void);
void				gexiv2_log_set_handler(GExiv2LogHandler handler);
void				gexiv2_log_use_glib_logging(void);

G_END_DECLS

#endif /* __GEXIV2_LOG_H__ */