| 85 | } |
| 86 | |
| 87 | bool string_list_has_string(const struct string_list *list, const char *string) |
| 88 | { |
| 89 | bool exact_match; |
| 90 | get_entry_index(list, string, &exact_match); |
| 91 | return exact_match; |
| 92 | } |
| 93 | |
| 94 | size_t string_list_find_insert_index(const struct string_list *list, const char *string, |
| 95 | bool *exact_match) |
no test coverage detected