summaryrefslogtreecommitdiff
path: root/src/table.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/table.h')
-rw-r--r--src/table.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/table.h b/src/table.h
index 31989f2..583cf1f 100644
--- a/src/table.h
+++ b/src/table.h
@@ -32,22 +32,22 @@ struct _vte_table;
struct _vte_table *_vte_table_new(void);
/* Free a table tree. */
-void _vte_table_free(struct _vte_table *table);
+VTE_STATIC void _vte_table_free(struct _vte_table *table);
/* Add a string to the matching tree. */
-void _vte_table_add(struct _vte_table *table,
- const char *pattern, gssize length,
- const char *result, GQuark quark);
+VTE_STATIC void _vte_table_add(struct _vte_table *table,
+ const char *pattern, gssize length,
+ const char *result, GQuark quark);
/* Check if a string matches something in the tree. */
-const char *_vte_table_match(struct _vte_table *table,
- const gunichar *pattern, gssize length,
- const char **res, const gunichar **consumed,
- GQuark *quark, GValueArray **array);
+VTE_STATIC const char *_vte_table_match(struct _vte_table *table,
+ const gunichar *pattern, gssize length,
+ const char **res, const gunichar **consumed,
+ GQuark *quark, GValueArray **array);
/* Dump out the contents of a tree. */
-void _vte_table_print(struct _vte_table *table);
+VTE_STATIC void _vte_table_print(struct _vte_table *table);
-extern const struct _vte_matcher_class _vte_matcher_table;
+VTE_EXTERN const struct _vte_matcher_class _vte_matcher_table;
G_END_DECLS