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.
19 lines
558 B
19 lines
558 B
#ifndef GNUMERIC_NUMBER_MATCH_H
|
|
#define GNUMERIC_NUMBER_MATCH_H
|
|
|
|
#include "gnumeric.h"
|
|
|
|
gboolean format_match_create (GnmFormat *fmt);
|
|
void format_match_release (GnmFormat *fmt);
|
|
|
|
GnmValue *format_match_simple (char const *s);
|
|
GnmValue *format_match (char const *s, GnmFormat *cur_fmt,
|
|
GnmDateConventions const *date_conv);
|
|
GnmValue *format_match_number (char const *s, GnmFormat *cur_fmt,
|
|
GnmDateConventions const *date_conv);
|
|
|
|
void format_match_init (void);
|
|
void format_match_finish (void);
|
|
|
|
#endif /* GNUMERIC_NUMBER_MATCH_H */
|