diff options
Diffstat (limited to 'include/fitz/hash.h')
-rw-r--r-- | include/fitz/hash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fitz/hash.h b/include/fitz/hash.h index 731e5fab..c53056bc 100644 --- a/include/fitz/hash.h +++ b/include/fitz/hash.h @@ -3,7 +3,7 @@ typedef struct fz_hashtable_s fz_hashtable; fz_error *fz_newhash(fz_hashtable **tablep, int initialsize, int keylen); fz_error *fz_resizehash(fz_hashtable *table, int newsize); void fz_debughash(fz_hashtable *table); -void fz_freehash(fz_hashtable *table); +void fz_drophash(fz_hashtable *table); void *fz_hashfind(fz_hashtable *table, void *key); fz_error *fz_hashinsert(fz_hashtable *table, void *key, void *val); |