* Return whether the strmap is empty. */
| 101 | * Return whether the strmap is empty. |
| 102 | */ |
| 103 | static inline int strmap_empty(struct strmap *map) |
| 104 | { |
| 105 | return strmap_get_size(map) == 0; |
| 106 | } |
| 107 | |
| 108 | /* |
| 109 | * iterate through @map using @iter, @var is a pointer to a type strmap_entry |
no test coverage detected