| 983 | } |
| 984 | |
| 985 | static int gitdiff_newname(struct gitdiff_data *state, |
| 986 | const char *line, |
| 987 | struct patch *patch) |
| 988 | { |
| 989 | return gitdiff_verify_name(state, line, |
| 990 | patch->is_delete, &patch->new_name, |
| 991 | DIFF_NEW_NAME); |
| 992 | } |
| 993 | |
| 994 | static int parse_mode_line(const char *line, |
| 995 | const char *patch_input_file, |
nothing calls this directly
no test coverage detected