/usr/include/libspreadsheet-1.12/spreadsheet/command-context.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 | /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef _GNM_COMMAND_CONTEXT_H_
# define _GNM_COMMAND_CONTEXT_H_
#include "gnumeric.h"
#include <goffice/goffice.h>
G_BEGIN_DECLS
/* some gnumeric specific utility routines */
void gnm_cmd_context_error_calc (GOCmdContext *cc, char const *msg);
void gnm_cmd_context_error_splits_array (GOCmdContext *cc, char const *cmd,
GnmRange const *array);
void gnm_cmd_context_error_splits_merge (GOCmdContext *cc,
GnmRange const *merge);
GQuark gnm_error_array (void);
GQuark gnm_error_calc (void);
G_END_DECLS
#endif /* _GNM_COMMAND_CONTEXT_H_ */
|