This file is indexed.

/usr/include/bse/gslmagic.hh is in libbse-dev 0.7.8-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
// Licensed GNU LGPL v2.1 or later: http://www.gnu.org/licenses/lgpl.html
#ifndef __GSL_MAGIC_H__
#define __GSL_MAGIC_H__
#include <bse/gsldefs.hh>
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/* --- structures --- */
typedef struct _GslRealMagic GslRealMagic;
struct _GslMagic
{
  gpointer data;
  gchar   *extension;
  /*< private >*/
  gint          priority;
  GslRealMagic *match_list;
};
/* match entity with:
 * prefix,
 * extension,
 * magic_spec
 *
 * where prefix has absolute preference, and extension is just
 * a _hint_ for magic_spec match order, unless magic_spec==NULL
 *
 * no prefix for save handlers. (?) just extension matches.
 *
 * need pre-parse functionality, to figure name and type of a
 * file's contents.
 */
/* --- prototypes --- */
GslMagic*	gsl_magic_create		(gpointer	 data,
						 gint		 priority,
						 const gchar	*extension,
						 const gchar	*magic_spec);
GslMagic*	gsl_magic_list_match_file	(SfiRing	*magic_list,
						 const gchar    *file_name);
GslMagic*	gsl_magic_list_match_file_skip	(SfiRing	*magic_list,
						 const gchar    *file_name,
						 guint           skip_bytes);
void		gsl_magic_list_brute_match	(SfiRing	*magic_list,
						 const gchar	*file_name,
						 guint		 skip_bytes,
						 GslMagic	*skip_magic,
						 SfiRing       **ext_matches,
						 SfiRing       **other_matches);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __GSL_MAGIC_H__ */