7ef0d62730
Merge commit '1b593e1ea4d2af0f6444d9a7788d5d99abd6fde5' as 'third_party/git'
10 lines
204 B
C
10 lines
204 B
C
#ifndef SVNDIFF_H
|
|
#define SVNDIFF_H
|
|
|
|
struct line_buffer;
|
|
struct sliding_view;
|
|
|
|
int svndiff0_apply(struct line_buffer *delta, off_t delta_len,
|
|
struct sliding_view *preimage, FILE *postimage);
|
|
|
|
#endif
|