/usr/include/libspreadsheet-1.12/spreadsheet/complete.h is in gnumeric 1.12.18-2.
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>
G_BEGIN_DECLS
#define COMPLETE_TYPE (complete_get_type ())
#define COMPLETE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), COMPLETE_TYPE, Complete))
#define COMPLETE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), COMPLETE_TYPE, CompleteClass))
#define IS_COMPLETE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), COMPLETE_TYPE))
#define IS_COMPLETE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), COMPLETE_TYPE))
typedef void (*CompleteMatchNotifyFn) (char const *text, void *closure);
typedef struct {
GObject parent;
CompleteMatchNotifyFn notify;
void *notify_closure;
char *text;
guint idle_tag;
} Complete;
typedef struct {
GObjectClass parent_class;
void (*start_over) (Complete *complete);
gboolean (*search_iteration) (Complete *complete);
} CompleteClass;
void complete_construct (Complete *complete,
CompleteMatchNotifyFn notify,
void *notify_closure);
void complete_start (Complete *complete, char const *text);
GType complete_get_type (void);
G_END_DECLS
#endif /* _GNM_COMPLETE_H_ */
|