2006-04-05 11:03:58 +02:00
|
|
|
#ifndef XDIFF_INTERFACE_H
|
|
|
|
#define XDIFF_INTERFACE_H
|
|
|
|
|
|
|
|
#include "xdiff/xdiff.h"
|
|
|
|
|
|
|
|
typedef void (*xdiff_emit_consume_fn)(void *, char *, unsigned long);
|
2008-10-25 15:31:15 +02:00
|
|
|
typedef void (*xdiff_emit_hunk_consume_fn)(void *, long, long, long);
|
2006-04-05 11:03:58 +02:00
|
|
|
|
2007-12-13 22:25:07 +01:00
|
|
|
int xdi_diff(mmfile_t *mf1, mmfile_t *mf2, xpparam_t const *xpp, xdemitconf_t const *xecfg, xdemitcb_t *ecb);
|
Make xdi_diff_outf interface for running xdiff_outf diffs
To prepare for the need to initialize and release resources for an
xdi_diff with the xdiff_outf output function, make a new function to
wrap this usage.
Old:
ecb.outf = xdiff_outf;
ecb.priv = &state;
...
xdi_diff(file_p, file_o, &xpp, &xecfg, &ecb);
New:
xdi_diff_outf(file_p, file_o, &state.xm, &xpp, &xecfg, &ecb);
Signed-off-by: Brian Downing <bdowning@lavos.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2008-08-14 07:36:50 +02:00
|
|
|
int xdi_diff_outf(mmfile_t *mf1, mmfile_t *mf2,
|
2008-08-14 08:18:22 +02:00
|
|
|
xdiff_emit_consume_fn fn, void *consume_callback_data,
|
|
|
|
xpparam_t const *xpp,
|
Make xdi_diff_outf interface for running xdiff_outf diffs
To prepare for the need to initialize and release resources for an
xdi_diff with the xdiff_outf output function, make a new function to
wrap this usage.
Old:
ecb.outf = xdiff_outf;
ecb.priv = &state;
...
xdi_diff(file_p, file_o, &xpp, &xecfg, &ecb);
New:
xdi_diff_outf(file_p, file_o, &state.xm, &xpp, &xecfg, &ecb);
Signed-off-by: Brian Downing <bdowning@lavos.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2008-08-14 07:36:50 +02:00
|
|
|
xdemitconf_t const *xecfg, xdemitcb_t *xecb);
|
2008-10-25 15:31:15 +02:00
|
|
|
int xdi_diff_hunks(mmfile_t *mf1, mmfile_t *mf2,
|
|
|
|
xdiff_emit_hunk_consume_fn fn, void *consume_callback_data,
|
|
|
|
xpparam_t const *xpp, xdemitconf_t *xecfg);
|
2006-04-05 21:22:35 +02:00
|
|
|
int parse_hunk_header(char *line, int len,
|
2006-04-07 07:29:55 +02:00
|
|
|
int *ob, int *on,
|
|
|
|
int *nb, int *nn);
|
2006-12-20 17:37:07 +01:00
|
|
|
int read_mmfile(mmfile_t *ptr, const char *filename);
|
2007-06-05 04:36:11 +02:00
|
|
|
int buffer_is_binary(const char *ptr, unsigned long size);
|
2006-04-05 11:03:58 +02:00
|
|
|
|
2008-09-19 00:42:48 +02:00
|
|
|
extern void xdiff_set_find_func(xdemitconf_t *xecfg, const char *line, int cflags);
|
2009-07-02 00:01:43 +02:00
|
|
|
extern void xdiff_clear_find_func(xdemitconf_t *xecfg);
|
2008-08-29 19:49:56 +02:00
|
|
|
extern int git_xmerge_config(const char *var, const char *value, void *cb);
|
|
|
|
extern int git_xmerge_style;
|
2007-07-06 09:45:10 +02:00
|
|
|
|
2006-04-05 11:03:58 +02:00
|
|
|
#endif
|