| 668 | } |
| 669 | |
| 670 | static char *get_header(const char *msg, const char *key) |
| 671 | { |
| 672 | size_t len; |
| 673 | const char *v = find_commit_header(msg, key, &len); |
| 674 | return v ? xmemdupz(v, len) : NULL; |
| 675 | } |
| 676 | |
| 677 | static char *replace_encoding_header(char *buf, const char *encoding) |
| 678 | { |
no test coverage detected