| 211 | } |
| 212 | |
| 213 | struct hashmap_entry *hashmap_get(const struct hashmap *map, |
| 214 | const struct hashmap_entry *key, |
| 215 | const void *keydata) |
| 216 | { |
| 217 | if (!map->table) |
| 218 | return NULL; |
| 219 | return *find_entry_ptr(map, key, keydata); |
| 220 | } |
| 221 | |
| 222 | struct hashmap_entry *hashmap_get_next(const struct hashmap *map, |
| 223 | const struct hashmap_entry *entry) |
no test coverage detected