| 286 | } |
| 287 | |
| 288 | void hashmap_iter_init(struct hashmap *map, struct hashmap_iter *iter) |
| 289 | { |
| 290 | iter->map = map; |
| 291 | iter->tablepos = 0; |
| 292 | iter->next = NULL; |
| 293 | } |
| 294 | |
| 295 | struct hashmap_entry *hashmap_iter_next(struct hashmap_iter *iter) |
| 296 | { |
no outgoing calls
no test coverage detected