hashtable entry free callback
| 28 | |
| 29 | // hashtable entry free callback |
| 30 | static void freeCallback |
| 31 | ( |
| 32 | dict *d, |
| 33 | void *val |
| 34 | ) { |
| 35 | Group_Free((Group*)val); |
| 36 | } |
| 37 | |
| 38 | // hashtable callbacks |
| 39 | static dictType _dt = { _id_hash, NULL, NULL, NULL, NULL, freeCallback, NULL, |
nothing calls this directly
no test coverage detected