blob: 023799a05cad8d3628a56188a00fba6884330f3b (
plain)
1
2
3
4
5
6
7
8
9
10
|
#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
|