This file is indexed.

/usr/include/libspreadsheet-1.12/spreadsheet/sheet-private.h is in gnumeric 1.12.28-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
/* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef _GNM_SHEET_PRIVATE_H_
# define _GNM_SHEET_PRIVATE_H_

G_BEGIN_DECLS

struct _SheetPrivate {
	GnmRange	 unhidden_region;

	/* State of menu items */
	unsigned char    enable_showhide_detail;

	unsigned char	 recompute_visibility;
	unsigned char	 recompute_spans;
	unsigned char	 recompute_max_col_group;
	unsigned char	 recompute_max_row_group;
	unsigned char	 resize_scrollbar;
	unsigned char	 resize;
	GnmCellPos	 reposition_objects;
	unsigned char	 filters_changed;
};

/* for internal use only */
void gnm_sheet_cell_init (void);
void gnm_sheet_cell_shutdown (void);

G_END_DECLS

#endif /* _GNM_SHEET_PRIVATE_H_ */