| 3770 | } |
| 3771 | |
| 3772 | static struct string_list *additional_headers(struct diff_options *o, |
| 3773 | const char *path) |
| 3774 | { |
| 3775 | if (!o->additional_path_headers) |
| 3776 | return NULL; |
| 3777 | return strmap_get(o->additional_path_headers, path); |
| 3778 | } |
| 3779 | |
| 3780 | static void add_formatted_header(struct strbuf *msg, |
| 3781 | const char *header, |
no test coverage detected