/usr/include/libspreadsheet-1.12/spreadsheet/command-context-stderr.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 | /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef _GNM_COMMAND_CONTEXT_STDERR_H_
# define _GNM_COMMAND_CONTEXT_STDERR_H_
#include "gnumeric.h"
#include <glib-object.h>
G_BEGIN_DECLS
#define GNM_CMD_CONTEXT_STDERR_TYPE (gnm_cmd_context_stderr_get_type ())
#define GNM_CMD_CONTEXT_STDERR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GNM_CMD_CONTEXT_STDERR_TYPE, GnmCmdContextStderr))
#define GNM_IS_CMD_CONTEXT_STDERR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GNM_CMD_CONTEXT_STDERR_TYPE))
typedef struct GnmCmdContextStderr_ GnmCmdContextStderr;
GType gnm_cmd_context_stderr_get_type (void);
GOCmdContext *gnm_cmd_context_stderr_new (void);
void gnm_cmd_context_stderr_set_status (GnmCmdContextStderr *ccs, int status);
int gnm_cmd_context_stderr_get_status (GnmCmdContextStderr *ccs);
G_END_DECLS
#endif /* _GNM_COMMAND_CONTEXT_STDERR_H_ */
|