https://github.com/git/git
Raw File
Tip revision: 0628636d0c21324ae0f11be591611c6b1e55705f authored by Johannes Schindelin on 12 February 2021, 14:50:15 UTC
Git 2.29.3
Tip revision: 0628636
svndiff.h
#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
back to top