Clear all items in hash table (to NULL)
| 1554 | |
| 1555 | // Clear all items in hash table (to NULL) |
| 1556 | void hashTableObj_clear(hashTableObj *self) { |
| 1557 | msFreeHashItems(self); |
| 1558 | initHashTable(self); |
| 1559 | } |
| 1560 | |
| 1561 | // Return the next key or first key if previousKey == NULL |
| 1562 | char *hashTableObj_nextKey(hashTableObj *self, const char *previousKey) { |
no test coverage detected