Return the next key or first key if previousKey == NULL
| 1560 | |
| 1561 | // Return the next key or first key if previousKey == NULL |
| 1562 | char *hashTableObj_nextKey(hashTableObj *self, const char *previousKey) { |
| 1563 | return ((char *)msNextKeyFromHashTable(self, previousKey)); |
| 1564 | } |
| 1565 | |
| 1566 | resultObj *resultObj_new() { |
| 1567 | resultObj *r = (resultObj *) msSmallMalloc(sizeof(resultObj)); |
no test coverage detected