| 278 | } |
| 279 | |
| 280 | struct hashmap_entry *hashmap_put(struct hashmap *map, |
| 281 | struct hashmap_entry *entry) |
| 282 | { |
| 283 | struct hashmap_entry *old = hashmap_remove(map, entry, NULL); |
| 284 | hashmap_add(map, entry); |
| 285 | return old; |
| 286 | } |
| 287 | |
| 288 | void hashmap_iter_init(struct hashmap *map, struct hashmap_iter *iter) |
| 289 | { |
no test coverage detected