man rbhash_free (Fonctions bibliothèques) - free an RBHash structure.
NAME
rbhash_free - free an RBHash structure.
SYNOPSIS
#include <roy.h>
void rbhash_free (RBHash *hash);
DESCRIPTION
Free an rbhash structure. Note that this function will not free the individual entries still in the hash table, and they will likely be lost forever. It is reecommended that the RBHASH_FOREACH macro (see rbhash(3)) be used to free all the entry structures in the table prior to calling rbhash_free(3).
RETURN VALUE
This function returns no value, and will always succeed.
SEE ALSO
rbhash(3), rbhash_entry_getkey(3), rbhash_entry_setkey(3), rbhash_insert(3), rbhash_len(3), rbhash_lookup(3), rbhash_lookup_next(3), rbhash_new(3), rbhash_remove(3), rbhash_remove_entry(3), roy(3)