summaryrefslogtreecommitdiffstats
path: root/src/proto/hashtable.pro
blob: 6cc8041d99d5fd498b65e8c9ec8b126287805527 (plain)
1
2
3
4
5
6
7
8
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 : */