| 238 | } |
| 239 | |
| 240 | void clear_mailmap(struct string_list *map) |
| 241 | { |
| 242 | map->strdup_strings = 1; |
| 243 | string_list_clear_func(map, free_mailmap_entry); |
| 244 | } |
| 245 | |
| 246 | /* |
| 247 | * Look for an entry in map that match string[0:len]; string[len] |
no test coverage detected