2007-12-24 08:36:00 +00:00
|
|
|
/*
|
|
|
|
* Low level 3-way in-core file merge.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LL_MERGE_H
|
|
|
|
#define LL_MERGE_H
|
|
|
|
|
2018-08-15 17:54:05 +00:00
|
|
|
#include "xdiff/xdiff.h"
|
|
|
|
|
2010-08-26 05:49:53 +00:00
|
|
|
struct ll_merge_options {
|
|
|
|
unsigned virtual_ancestor : 1;
|
|
|
|
unsigned variant : 2; /* favor ours, favor theirs, or union merge */
|
|
|
|
unsigned renormalize : 1;
|
2010-08-26 05:50:45 +00:00
|
|
|
long xdl_opts;
|
2010-08-26 05:49:53 +00:00
|
|
|
};
|
2010-08-05 11:17:38 +00:00
|
|
|
|
2007-12-24 08:36:00 +00:00
|
|
|
int ll_merge(mmbuffer_t *result_buf,
|
|
|
|
const char *path,
|
2010-03-21 00:38:58 +00:00
|
|
|
mmfile_t *ancestor, const char *ancestor_label,
|
2007-12-24 08:36:00 +00:00
|
|
|
mmfile_t *ours, const char *our_label,
|
|
|
|
mmfile_t *theirs, const char *their_label,
|
2010-08-26 05:49:53 +00:00
|
|
|
const struct ll_merge_options *opts);
|
2007-12-24 08:36:00 +00:00
|
|
|
|
2010-01-17 07:28:46 +00:00
|
|
|
int ll_merge_marker_size(const char *path);
|
|
|
|
|
2007-12-24 08:36:00 +00:00
|
|
|
#endif
|