Initializes the iterator and returns the first entry, if any. */
| 452 | |
| 453 | /* Initializes the iterator and returns the first entry, if any. */ |
| 454 | static inline struct hashmap_entry *hashmap_iter_first(struct hashmap *map, |
| 455 | struct hashmap_iter *iter) |
| 456 | { |
| 457 | hashmap_iter_init(map, iter); |
| 458 | return hashmap_iter_next(iter); |
| 459 | } |
| 460 | |
| 461 | /* |
| 462 | * returns the first entry in @map using @iter, where the entry is of |
nothing calls this directly
no test coverage detected