diff options
Diffstat (limited to 'src/matcher.h')
-rw-r--r-- | src/matcher.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/matcher.h b/src/matcher.h index 540cf97..b6654bc 100644 --- a/src/matcher.h +++ b/src/matcher.h @@ -53,23 +53,23 @@ struct _vte_matcher_class{ }; /* Create and init matcher. */ -struct _vte_matcher *_vte_matcher_new(const char *emulation, - struct _vte_termcap *termcap); +VTE_STATIC struct _vte_matcher *_vte_matcher_new(const char *emulation, + struct _vte_termcap *termcap); /* Free a matcher. */ -void _vte_matcher_free(struct _vte_matcher *matcher); +VTE_STATIC void _vte_matcher_free(struct _vte_matcher *matcher); /* Check if a string matches a sequence the matcher knows about. */ -const char *_vte_matcher_match(struct _vte_matcher *matcher, - const gunichar *pattern, gssize length, - const char **res, const gunichar **consumed, - GQuark *quark, GValueArray **array); +VTE_STATIC const char *_vte_matcher_match(struct _vte_matcher *matcher, + const gunichar *pattern, gssize length, + const char **res, const gunichar **consumed, + GQuark *quark, GValueArray **array); /* Dump out the contents of a matcher, mainly for debugging. */ -void _vte_matcher_print(struct _vte_matcher *matcher); +VTE_STATIC void _vte_matcher_print(struct _vte_matcher *matcher); /* Free a parameter array. */ -void _vte_matcher_free_params_array(struct _vte_matcher *matcher, GValueArray *params); +VTE_STATIC void _vte_matcher_free_params_array(struct _vte_matcher *matcher, GValueArray *params); G_END_DECLS |