| 220 | } |
| 221 | |
| 222 | struct hashmap_entry *hashmap_get_next(const struct hashmap *map, |
| 223 | const struct hashmap_entry *entry) |
| 224 | { |
| 225 | struct hashmap_entry *e = entry->next; |
| 226 | for (; e; e = e->next) |
| 227 | if (entry_equals(map, entry, e, NULL)) |
| 228 | return e; |
| 229 | return NULL; |
| 230 | } |
| 231 | |
| 232 | void hashmap_add(struct hashmap *map, struct hashmap_entry *entry) |
| 233 | { |
nothing calls this directly
no test coverage detected