mirror of
https://github.com/git/git
synced 2024-10-30 03:13:24 +00:00
d9ea73e056
This refactors the line-by-line callback mechanism used in combine-diff so that other programs can reuse it more easily. Signed-off-by: Junio C Hamano <junkio@cox.net>
18 lines
350 B
C
18 lines
350 B
C
#ifndef XDIFF_INTERFACE_H
|
|
#define XDIFF_INTERFACE_H
|
|
|
|
#include "xdiff/xdiff.h"
|
|
|
|
struct xdiff_emit_state;
|
|
|
|
typedef void (*xdiff_emit_consume_fn)(void *, char *, unsigned long);
|
|
|
|
struct xdiff_emit_state {
|
|
xdiff_emit_consume_fn consume;
|
|
char *remainder;
|
|
unsigned long remainder_size;
|
|
};
|
|
|
|
int xdiff_outf(void *priv_, mmbuffer_t *mb, int nbuf);
|
|
|
|
#endif
|