/usr/include/libspreadsheet-1.12/spreadsheet/cellspan.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 | /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef _GNM_CELLSPAN_H_
# define _GNM_CELLSPAN_H_
#include "gnumeric.h"
G_BEGIN_DECLS
typedef struct {
GnmCell const *cell;
int left, right;
} CellSpanInfo;
void cell_calc_span (GnmCell const *cell, int *col1, int *col2);
/* Management routines for spans */
void cell_register_span (GnmCell const *cell, int left, int right);
void cell_unregister_span (GnmCell const *cell);
GType cell_span_info_get_type (void);
CellSpanInfo const *row_span_get (ColRowInfo const *ri, int col);
void row_destroy_span (ColRowInfo *ri);
void row_calc_spans (ColRowInfo *ri, int row, Sheet const *sheet);
G_END_DECLS
#endif /* _GNM_CELLSPAN_H_ */
|