This file is indexed.

/usr/include/clutter-1.0/clutter/clutter-settings.h is in libclutter-1.0-dev 1.26.2+dfsg-4.

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

#if !defined(__CLUTTER_H_INSIDE__) && !defined(CLUTTER_COMPILATION)
#error "Only <clutter/clutter.h> can be included directly."
#endif

#include <clutter/clutter-types.h>

G_BEGIN_DECLS

#define CLUTTER_TYPE_SETTINGS           (clutter_settings_get_type ())
#define CLUTTER_SETTINGS(obj)           (G_TYPE_CHECK_INSTANCE_CAST ((obj), CLUTTER_TYPE_SETTINGS, ClutterSettings))
#define CLUTTER_IS_SETTINGS(obj)        (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CLUTTER_TYPE_SETTINGS))

typedef struct _ClutterSettings         ClutterSettings;
typedef struct _ClutterSettingsClass    ClutterSettingsClass;

CLUTTER_AVAILABLE_IN_ALL
GType clutter_settings_get_type (void) G_GNUC_CONST;

CLUTTER_AVAILABLE_IN_ALL
ClutterSettings *clutter_settings_get_default (void);

G_END_DECLS

#endif /* __CLUTTER_SETTINGS_H__ */