| 226 | } |
| 227 | |
| 228 | static inline void strset_init_with_options(struct strset *set, |
| 229 | struct mem_pool *pool, |
| 230 | int strdup_strings) |
| 231 | { |
| 232 | strmap_init_with_options(&set->map, pool, strdup_strings); |
| 233 | } |
| 234 | |
| 235 | static inline void strset_clear(struct strset *set) |
| 236 | { |
no test coverage detected