| 258 | } |
| 259 | |
| 260 | static inline unsigned int strset_get_size(struct strset *set) |
| 261 | { |
| 262 | return strmap_get_size(&set->map); |
| 263 | } |
| 264 | |
| 265 | /* Returns 1 if str is added to the set; returns 0 if str was already in set */ |
| 266 | int strset_add(struct strset *set, const char *str); |
no test coverage detected