| 4353 | } |
| 4354 | |
| 4355 | struct diff_filespec *alloc_filespec(const char *path) |
| 4356 | { |
| 4357 | struct diff_filespec *spec; |
| 4358 | |
| 4359 | FLEXPTR_ALLOC_STR(spec, path, path); |
| 4360 | spec->count = 1; |
| 4361 | spec->is_binary = -1; |
| 4362 | return spec; |
| 4363 | } |
| 4364 | |
| 4365 | void free_filespec(struct diff_filespec *spec) |
| 4366 | { |
no outgoing calls
no test coverage detected