mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
improve Hash_Free's docs
This commit is contained in:
parent
152538bf90
commit
6805d479f3
1 changed files with 5 additions and 1 deletions
|
@ -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);
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue