Ramsay Jones | 0009d35 | 2018-10-17 23:13:26 +0100 | [diff] [blame] | 1 | #ifndef SVNDIFF_H |
2 | #define SVNDIFF_H | ||||
Jonathan Nieder | ddcc8c5 | 2010-12-25 05:11:32 -0600 | [diff] [blame] | 3 | |
4 | struct line_buffer; | ||||
5 | struct sliding_view; | ||||
6 | |||||
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 7 | int svndiff0_apply(struct line_buffer *delta, off_t delta_len, |
Denton Liu | ad6dad0 | 2019-04-29 04:28:23 -0400 | [diff] [blame] | 8 | struct sliding_view *preimage, FILE *postimage); |
Jonathan Nieder | ddcc8c5 | 2010-12-25 05:11:32 -0600 | [diff] [blame] | 9 | |
10 | #endif |