diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-01-21 11:55:25 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-01-21 11:55:25 +0000 |
commit | dcaf10e19aac2af7c93d6dd23cb6241f971f2b19 (patch) | |
tree | d704aec40840d64d81fbf7225fcd5dd64eab847f /src/proto/hashtable.pro | |
parent | ca4729948bdc79d2175607194fdd98df7d6eb529 (diff) | |
download | vim-git-dcaf10e19aac2af7c93d6dd23cb6241f971f2b19.tar.gz |
updated for version 7.0043
Diffstat (limited to 'src/proto/hashtable.pro')
-rw-r--r-- | src/proto/hashtable.pro | 3 |
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 : */ |