l10n: Update Swedish translation (2194t0f0u)
[git/mingw.git] / ll-merge.h
blob244a31f55ac7375b59d7c257bfc2391957fdca94
1 /*
2 * Low level 3-way in-core file merge.
3 */
5 #ifndef LL_MERGE_H
6 #define LL_MERGE_H
8 struct ll_merge_options {
9 unsigned virtual_ancestor : 1;
10 unsigned variant : 2; /* favor ours, favor theirs, or union merge */
11 unsigned renormalize : 1;
12 long xdl_opts;
15 int ll_merge(mmbuffer_t *result_buf,
16 const char *path,
17 mmfile_t *ancestor, const char *ancestor_label,
18 mmfile_t *ours, const char *our_label,
19 mmfile_t *theirs, const char *their_label,
20 const struct ll_merge_options *opts);
22 int ll_merge_marker_size(const char *path);
24 #endif