This file is indexed.

/usr/include/libspreadsheet-1.12/spreadsheet/complete-sheet.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
27
28
29
30
31
32
33
34
35
36
37
38
39
/* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef _GNM_COMPLETE_SHEET_H_
# define _GNM_COMPLETE_SHEET_H_

#include "gnumeric.h"
#include "complete.h"

G_BEGIN_DECLS

#define GNM_COMPLETE_SHEET_TYPE        (gnm_complete_sheet_get_type ())
#define GNM_COMPLETE_SHEET(o)          (G_TYPE_CHECK_INSTANCE_CAST ((o), GNM_COMPLETE_SHEET_TYPE, GnmCompleteSheet))
#define GNM_IS_COMPLETE_SHEET(o)       (G_TYPE_CHECK_INSTANCE_TYPE ((o), GNM_COMPLETE_SHEET_TYPE))

typedef struct {
	GnmComplete parent;

	/* Cell being entered into.  */
	Sheet *sheet;
	GnmCellPos entry;

	/* Where we are searching.  */
	GnmCellPos current;
	GnmCell *cell;

	char  *current_text;
} GnmCompleteSheet;

typedef struct {
	GnmCompleteClass parent_class;
} GnmCompleteSheetClass;

GType     gnm_complete_sheet_get_type (void);
GnmComplete *gnm_complete_sheet_new   (Sheet *sheet, int col, int row,
				       GnmCompleteMatchNotifyFn notify,
				       void *notify_closure);

G_END_DECLS

#endif /* _GNM_COMPLETE_SHEET_H_ */