mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
471 B
23 lines
471 B
#ifndef SPLIT_H
|
|
#define SPLIT_H
|
|
|
|
#include "gnumeric.h"
|
|
|
|
struct _Workbook
|
|
{
|
|
};
|
|
|
|
GnmDateConventions const * workbook_date_conv( Workbook const *wb );
|
|
extern GnmExprConventions *gnm_expr_conventions_default;
|
|
|
|
struct _GnmExprConventions
|
|
{
|
|
gboolean output_translated;
|
|
/* If non-null, used to separate elements in lists. */
|
|
char const *output_argument_sep;
|
|
/* If non-null, used to separate array columns. */
|
|
char const *output_array_col_sep;
|
|
};
|
|
|
|
#endif /*SPLIT_H*/
|