This file is indexed.

/usr/include/bglibs/installer.h is in libbg1-dev 1.106-3.

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

/** \defgroup instlib instlib: Installation program generation

The installer libraries provide for building a program to install files,
to verify (check) an installation, and to show what would be installed,
from a single source.  This single source is typically called \c
insthier.c and contains a single routine also named \c insthier
(so-named as it provides the installation hierarchy).  The libraries
provide the \c main function that calls \c insthier as well as all the
necessary support functions.

Where given, \c uid and \c gid may be set to \c -1 if there is no need
to force the installed UID and GID to a particular value.  The \c dir
argument is a directory number previously opened by \c opendir.

@{ */

/** The directory prefix under which all files are placed. */
extern const char* install_prefix;

/** Open a directory and provide a file handle reference for future
 * operations. */
int opendir(const char* dir);

/** Open a subdirectory of a directory already opened by \c opendir. */
int opensubdir(int dir, const char* subdir);

/** Create a subdirectory. */
int d(int dir, const char* subdir,
      unsigned uid, unsigned gid, unsigned mode);

/** Copy a file from the source directory to a different name. */
void cf(int dir, const char* file, unsigned uid, unsigned gid, unsigned mode,
	const char* srcfile);

/** Copy a file from the source directory, retaining its name. */
void c(int dir, const char* file, unsigned uid, unsigned gid, unsigned mode);

/** Create a symbolic link. */
void s(int dir, const char* file, const char* target);

/** The single function that the \c insthier.c source needs to define. */
extern void insthier(void);

/** @} */

#endif