diff options
Diffstat (limited to 'include/fitz/hash.h')
-rw-r--r-- | include/fitz/hash.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/fitz/hash.h b/include/fitz/hash.h index c53056bc..2ada17f4 100644 --- a/include/fitz/hash.h +++ b/include/fitz/hash.h @@ -3,6 +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_emptyhash(fz_hashtable *table); void fz_drophash(fz_hashtable *table); void *fz_hashfind(fz_hashtable *table, void *key); |