This file is indexed.

/usr/include/libgsf-1/gsf/gsf.h is in libgsf-1-dev 1.14.41-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
/*
 * gsf.h:
 *
 * Copyright (C) 2002-2006 Jody Goldberg (jody@gnome.org)
 * Copyright (C) 2013 Morten Welinder (terra@gnome.org)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of version 2.1 of the GNU Lesser General Public
 * License as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301
 * USA
 */

/*
 * Rules for header inclusion:
 *
 * 1. Applications should include gsf/gsf.h only and require libgsf 1.14.26
 *    Prior to 1.14.26 the practice was to include specific headers.   That
 *    still ought to work, but is deprecated.
 *
 * 2. gsf/gsf-foo.c should include <gsf-config.h>, then <gsf/gsf-foo.h>,
 *    then <gsf/gsf.h>.  No further gsf headers should be needed.
 *
 * 3. gsf/gsf-foo.h should include <gsf/gsf-fwd.h>.  It must not include
 *    <gsf/gsf.h> or <gsf-config.h> (which isn't even installed).  If
 *    a super-class is needed, include also the header for that class.
 *    For convenience, classes derived from Gsf{In,Out}{put,file} should
 *    include the relevant header too.
 *
 * 4. Rules 2 and 3 do not apply to headers that are not installed.
 */

#ifndef GSF_H
#define GSF_H

#include <glib.h>

#include <gsf/gsf-fwd.h>

#include <gsf/gsf-input.h>
#include <gsf/gsf-output.h>
#include <gsf/gsf-infile.h>
#include <gsf/gsf-outfile.h>

#include <gsf/gsf-impl-utils.h>
#include <gsf/gsf-input-impl.h>
#include <gsf/gsf-infile-impl.h>
#include <gsf/gsf-output-impl.h>
#include <gsf/gsf-outfile-impl.h>

#include <gsf/gsf-libxml.h>

#include <gsf/gsf-blob.h>
#include <gsf/gsf-clip-data.h>
#include <gsf/gsf-doc-meta-data.h>
#include <gsf/gsf-docprop-vector.h>
#include <gsf/gsf-infile-msole.h>
#include <gsf/gsf-infile-msvba.h>
#include <gsf/gsf-infile-stdio.h>
#include <gsf/gsf-infile-zip.h>
#include <gsf/gsf-input-bzip.h>
#include <gsf/gsf-input-gio.h>
#include <gsf/gsf-input-gzip.h>
#include <gsf/gsf-input-http.h>
#include <gsf/gsf-input-memory.h>
#include <gsf/gsf-input-proxy.h>
#include <gsf/gsf-input-stdio.h>
#include <gsf/gsf-infile-tar.h>
#include <gsf/gsf-input-textline.h>
#include <gsf/gsf-meta-names.h>
#include <gsf/gsf-msole-utils.h>
#include <gsf/gsf-opendoc-utils.h>
#include <gsf/gsf-open-pkg-utils.h>
#include <gsf/gsf-outfile-msole.h>
#include <gsf/gsf-outfile-stdio.h>
#include <gsf/gsf-outfile-zip.h>
#include <gsf/gsf-output-bzip.h>
#include <gsf/gsf-output-csv.h>
#include <gsf/gsf-output-gio.h>
#include <gsf/gsf-output-gzip.h>
#include <gsf/gsf-output-iconv.h>
#include <gsf/gsf-output-iochannel.h>
#include <gsf/gsf-output-memory.h>
#include <gsf/gsf-output-stdio.h>
#include <gsf/gsf-shared-memory.h>
#include <gsf/gsf-structured-blob.h>
#include <gsf/gsf-timestamp.h>
#include <gsf/gsf-utils.h>

#endif /* GSF_H */