This file is indexed.

/usr/include/libspreadsheet-1.12/spreadsheet/hlink-impl.h is in gnumeric 1.12.35-1.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
#ifndef _GNM_HLINK_IMPL_H_
# define _GNM_HLINK_IMPL_H_

#include "hlink.h"

G_BEGIN_DECLS

struct _GnmHLink {
	GObject obj;
	gchar *tip;
	gchar *target;
	Sheet *sheet;
};

typedef struct {
	GObjectClass obj;

	gboolean (*Activate) (GnmHLink *lnk, WBCGtk *wbcg);
	void (*set_sheet) (GnmHLink *lnk, Sheet *sheet);
	void (*set_target) (GnmHLink *lnk, const char *target);
	const char * (*get_target) (GnmHLink const *lnk);
} GnmHLinkClass;

G_END_DECLS

#endif /* _GNM_HLINK_IMPL_H_ */