2007-12-24 09:36:00 +01:00
|
|
|
/*
|
|
|
|
* Low level 3-way in-core file merge.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LL_MERGE_H
|
|
|
|
#define LL_MERGE_H
|
|
|
|
|
2018-08-15 19:54:05 +02:00
|
|
|
#include "xdiff/xdiff.h"
|
|
|
|
|
2018-09-21 17:57:27 +02:00
|
|
|
struct index_state;
|
|
|
|
|
2010-08-26 07:49:53 +02: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 07:50:45 +02:00
|
|
|
long xdl_opts;
|
2010-08-26 07:49:53 +02:00
|
|
|
};
|
2010-08-05 13:17:38 +02:00
|
|
|
|
2007-12-24 09:36:00 +01:00
|
|
|
int ll_merge(mmbuffer_t *result_buf,
|
|
|
|
const char *path,
|
2010-03-21 01:38:58 +01:00
|
|
|
mmfile_t *ancestor, const char *ancestor_label,
|
2007-12-24 09:36:00 +01:00
|
|
|
mmfile_t *ours, const char *our_label,
|
|
|
|
mmfile_t *theirs, const char *their_label,
|
2018-09-21 17:57:27 +02:00
|
|
|
struct index_state *istate,
|
2010-08-26 07:49:53 +02:00
|
|
|
const struct ll_merge_options *opts);
|
2007-12-24 09:36:00 +01:00
|
|
|
|
2018-09-21 17:57:27 +02:00
|
|
|
int ll_merge_marker_size(struct index_state *istate, const char *path);
|
2010-01-17 08:28:46 +01:00
|
|
|
|
2007-12-24 09:36:00 +01:00
|
|
|
#endif
|