diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2000-11-03 20:53:04 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@axis.com> | 2000-11-03 20:53:04 +0000 |
commit | 789080693e56cd0032d00e21790f9be6ed4fba93 (patch) | |
tree | da2e3c790954bd9e087ea959de972fd25215f3f9 /include/hashtab.h | |
parent | bb5d559a73794be49fd63b97086bf7e982504399 (diff) | |
download | newlib-789080693e56cd0032d00e21790f9be6ed4fba93.zip newlib-789080693e56cd0032d00e21790f9be6ed4fba93.tar.gz newlib-789080693e56cd0032d00e21790f9be6ed4fba93.tar.bz2 |
* hashtab.h: Change void * to PTR where necessary.
Diffstat (limited to 'include/hashtab.h')
-rw-r--r-- | include/hashtab.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/hashtab.h b/include/hashtab.h index 12f830c..c110ac5 100644 --- a/include/hashtab.h +++ b/include/hashtab.h @@ -80,7 +80,7 @@ struct htab htab_del del_f; /* Table itself. */ - void **entries; + PTR *entries; /* Current size (in entries) of the hash table */ size_t size; @@ -112,12 +112,12 @@ extern htab_t htab_create PARAMS ((size_t, htab_hash, extern void htab_delete PARAMS ((htab_t)); extern void htab_empty PARAMS ((htab_t)); -extern void *htab_find PARAMS ((htab_t, const void *)); -extern void **htab_find_slot PARAMS ((htab_t, const void *, +extern PTR htab_find PARAMS ((htab_t, const void *)); +extern PTR *htab_find_slot PARAMS ((htab_t, const void *, enum insert_option)); -extern void *htab_find_with_hash PARAMS ((htab_t, const void *, +extern PTR htab_find_with_hash PARAMS ((htab_t, const void *, hashval_t)); -extern void **htab_find_slot_with_hash PARAMS ((htab_t, const void *, +extern PTR *htab_find_slot_with_hash PARAMS ((htab_t, const void *, hashval_t, enum insert_option)); extern void htab_clear_slot PARAMS ((htab_t, void **)); |