| 134 | strmap_for_each_entry(&(mystrmap)->map, iter, var) |
| 135 | |
| 136 | static inline void strintmap_init(struct strintmap *map, int default_value) |
| 137 | { |
| 138 | strmap_init(&map->map); |
| 139 | map->default_value = default_value; |
| 140 | } |
| 141 | |
| 142 | static inline void strintmap_init_with_options(struct strintmap *map, |
| 143 | int default_value, |
no test coverage detected