Beispiel #1
0
void mget_hashmap_free(mget_hashmap_t **h)
{
	if (h && *h) {
		mget_hashmap_clear(*h);
		xfree((*h)->entry);
		xfree(*h);
	}
}
Beispiel #2
0
void mget_stringmap_clear(mget_stringmap_t *h)
{
	mget_hashmap_clear(h);
}