improve Hash_Free's docs

This commit is contained in:
Bill Currie 2003-02-21 02:37:44 +00:00
parent 152538bf90
commit 6805d479f3
1 changed files with 5 additions and 1 deletions

View File

@ -118,7 +118,11 @@ void **Hash_FindElementList (hashtab_t *tab, void *ele);
void *Hash_Del (hashtab_t *tab, const char *key);
void *Hash_DelElement (hashtab_t *tab, void *ele);
/* Hash_Free (tab, Hash_Del (tab, key)); */
/*
calls the free element function for the supplied ele
eg:
Hash_Free (tab, Hash_Del (tab, key));
*/
void Hash_Free (hashtab_t *tab, void *ele);
/*