summaryrefslogtreecommitdiffstats
path: root/src/proto/hashtable.pro
diff options
context:
space:
mode:
Diffstat (limited to 'src/proto/hashtable.pro')
-rw-r--r--src/proto/hashtable.pro3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/proto/hashtable.pro b/src/proto/hashtable.pro
index f6cb77ad92..6cc8041d99 100644
--- a/src/proto/hashtable.pro
+++ b/src/proto/hashtable.pro
@@ -1,6 +1,9 @@
/* hashtable.c */
void hash_init __ARGS((hashtable *ht));
+void hash_clear __ARGS((hashtable *ht));
hashitem *hash_find __ARGS((hashtable *ht, char_u *key));
int hash_add __ARGS((hashtable *ht, char_u *key));
void hash_remove __ARGS((hashtable *ht, hashitem *hi));
+void hash_lock __ARGS((hashtable *ht));
+void hash_unlock __ARGS((hashtable *ht));
/* vim: set ft=c : */