* Return how many entries the strmap has. */
| 93 | * Return how many entries the strmap has. |
| 94 | */ |
| 95 | static inline unsigned int strmap_get_size(struct strmap *map) |
| 96 | { |
| 97 | return hashmap_get_size(&map->map); |
| 98 | } |
| 99 | |
| 100 | /* |
| 101 | * Return whether the strmap is empty. |
no test coverage detected