summaryrefslogtreecommitdiff
path: root/src/proto/hashtable.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-01-21 11:55:25 +0000
committerBram Moolenaar <Bram@vim.org>2005-01-21 11:55:25 +0000
commitdcaf10e19aac2af7c93d6dd23cb6241f971f2b19 (patch)
treed704aec40840d64d81fbf7225fcd5dd64eab847f /src/proto/hashtable.pro
parentca4729948bdc79d2175607194fdd98df7d6eb529 (diff)
downloadvim-git-dcaf10e19aac2af7c93d6dd23cb6241f971f2b19.tar.gz
updated for version 7.0043
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 f6cb77ad9..6cc8041d9 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 : */