comparison src/proto/hashtable.pro @ 237:73354c21f1e4 v7.0066

updated for version 7.0066
author vimboss
date Fri, 15 Apr 2005 21:13:42 +0000
parents b5fc81a825a1
children a711f7a6852d
comparison
equal deleted inserted replaced
236:4707450c2b33 237:73354c21f1e4
1 /* hashtable.c */ 1 /* hashtable.c */
2 hashtab_T *hash_create __ARGS((void));
2 void hash_init __ARGS((hashtab_T *ht)); 3 void hash_init __ARGS((hashtab_T *ht));
3 void hash_clear __ARGS((hashtab_T *ht)); 4 void hash_clear __ARGS((hashtab_T *ht));
4 hashitem_T *hash_find __ARGS((hashtab_T *ht, char_u *key)); 5 hashitem_T *hash_find __ARGS((hashtab_T *ht, char_u *key));
5 hashitem_T *hash_lookup __ARGS((hashtab_T *ht, char_u *key, hash_T hash)); 6 hashitem_T *hash_lookup __ARGS((hashtab_T *ht, char_u *key, hash_T hash));
6 int hash_add __ARGS((hashtab_T *ht, char_u *key)); 7 int hash_add __ARGS((hashtab_T *ht, char_u *key));
7 int hash_add_item __ARGS((hashtab_T *ht, hashitem_T *hi, char_u *key, hash_T hash)); 8 int hash_add_item __ARGS((hashtab_T *ht, hashitem_T *hi, char_u *key, hash_T hash));
8 void hash_remove __ARGS((hashtab_T *ht, hashitem_T *hi)); 9 void hash_remove __ARGS((hashtab_T *ht, hashitem_T *hi));
9 void hash_lock __ARGS((hashtab_T *ht)); 10 void hash_lock __ARGS((hashtab_T *ht));
11 void hash_lock_size __ARGS((hashtab_T *ht, int size));
10 void hash_unlock __ARGS((hashtab_T *ht)); 12 void hash_unlock __ARGS((hashtab_T *ht));
11 hash_T hash_hash __ARGS((char_u *key)); 13 hash_T hash_hash __ARGS((char_u *key));
12 /* vim: set ft=c : */ 14 /* vim: set ft=c : */