diff options
Diffstat (limited to 'include/fitz/hash.h')
-rw-r--r-- | include/fitz/hash.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/fitz/hash.h b/include/fitz/hash.h index 4229a02c..731e5fab 100644 --- a/include/fitz/hash.h +++ b/include/fitz/hash.h @@ -10,6 +10,6 @@ fz_error *fz_hashinsert(fz_hashtable *table, void *key, void *val); fz_error *fz_hashremove(fz_hashtable *table, void *key); int fz_hashlen(fz_hashtable *table); -void *fz_gethashkey(fz_hashtable *table, int idx); -void *fz_gethashval(fz_hashtable *table, int idx); +void *fz_hashgetkey(fz_hashtable *table, int idx); +void *fz_hashgetval(fz_hashtable *table, int idx); |