Remove one item from hash table
| 1549 | |
| 1550 | // Remove one item from hash table |
| 1551 | int hashTableObj_remove(hashTableObj *self, const char *key) { |
| 1552 | return (msRemoveHashTable(self, key)); |
| 1553 | } |
| 1554 | |
| 1555 | // Clear all items in hash table (to NULL) |
| 1556 | void hashTableObj_clear(hashTableObj *self) { |
no test coverage detected