This file is indexed.

/usr/include/libspreadsheet-1.12/spreadsheet/complete.h is in gnumeric 1.12.32-1+b1.

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
/* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef _GNM_COMPLETE_H_
# define _GNM_COMPLETE_H_

#include <glib-object.h>
#include <gnumeric-fwd.h>

G_BEGIN_DECLS

#define GNM_COMPLETE_TYPE        (gnm_complete_get_type ())
#define GNM_COMPLETE(o)          (G_TYPE_CHECK_INSTANCE_CAST ((o), GNM_COMPLETE_TYPE, GnmComplete))
#define GNM_COMPLETE_CLASS(k)    (G_TYPE_CHECK_CLASS_CAST ((k), GNM_COMPLETE_TYPE, GnmCompleteClass))
#define GNM_IS_COMPLETE(o)       (G_TYPE_CHECK_INSTANCE_TYPE ((o), GNM_COMPLETE_TYPE))

typedef void (*GnmCompleteMatchNotifyFn) (char const *text, void *closure);

struct GnmComplete_ {
	GObject parent;

	GnmCompleteMatchNotifyFn notify;
	void *notify_closure;

	char *text;

	guint idle_tag;
};

typedef struct {
	GObjectClass parent_class;

	void     (*start_over)       (GnmComplete *complete);
	gboolean (*search_iteration) (GnmComplete *complete);
} GnmCompleteClass;

void  gnm_complete_construct (GnmComplete *complete,
			      GnmCompleteMatchNotifyFn notify,
			      void *notify_closure);
void  gnm_complete_start     (GnmComplete *complete, char const *text);
GType gnm_complete_get_type  (void);

G_END_DECLS

#endif /* _GNM_COMPLETE_H_ */