Update Spanish translation
[gnumeric.git] / src / tools / tabulate.h
bloba8e46db54e599b485629d8da2d5c49ee0dc5ef17
1 #ifndef GNUMERIC_TABULATE_H
2 #define GNUMERIC_TABULATE_H
4 #include <gnumeric.h>
5 #include <numbers.h>
6 #include <tools/dao.h>
7 #include <tools/tools.h>
9 typedef struct {
10 GnmCell *target;
11 int dims;
12 GnmCell **cells;
13 gnm_float *minima;
14 gnm_float *maxima;
15 gnm_float *steps;
16 gboolean with_coordinates;
17 } GnmTabulateInfo;
19 GSList *
20 do_tabulation (WorkbookControl *wbc,
21 GnmTabulateInfo *data);
23 #endif