| 140 | } |
| 141 | |
| 142 | static inline void strintmap_init_with_options(struct strintmap *map, |
| 143 | int default_value, |
| 144 | struct mem_pool *pool, |
| 145 | int strdup_strings) |
| 146 | { |
| 147 | strmap_init_with_options(&map->map, pool, strdup_strings); |
| 148 | map->default_value = default_value; |
| 149 | } |
| 150 | |
| 151 | static inline void strintmap_clear(struct strintmap *map) |
| 152 | { |
no test coverage detected