Compilation: fix warning.
[gnumeric.git] / src / number-match.h
blob9164ff82766b33e72f6a88b193d9a4d093afd215
1 /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 #ifndef _GNM_NUMBER_MATCH_H_
3 # define _GNM_NUMBER_MATCH_H_
5 #include "gnumeric.h"
7 G_BEGIN_DECLS
9 GnmValue *format_match_simple (char const *text);
10 GnmValue *format_match (char const *text, GOFormat const *cur_fmt,
11 GODateConventions const *date_conv);
12 GnmValue *format_match_number (char const *text, GOFormat const *cur_fmt,
13 GODateConventions const *date_conv);
14 GnmValue *format_match_decimal_number_with_locale
15 (char const *text, GOFormatFamily *family,
16 GString const *curr, GString const *thousand,
17 GString const *decimal);
19 GnmValue *format_match_datetime (char const *text,
20 GODateConventions const *date_conv,
21 gboolean month_before_day,
22 gboolean add_format,
23 gboolean presume_date);
25 G_END_DECLS
27 #endif /* _GNM_NUMBER_MATCH_H_ */