| 8 | } |
| 9 | |
| 10 | void string_list_init_dup(struct string_list *list) |
| 11 | { |
| 12 | struct string_list blank = STRING_LIST_INIT_DUP; |
| 13 | memcpy(list, &blank, sizeof(*list)); |
| 14 | } |
| 15 | |
| 16 | /* if there is no exact match, point to the index where the entry could be |
| 17 | * inserted */ |
no outgoing calls
no test coverage detected