ll-merge.hon commit ll-merge: replace flag argument with options struct (712516b)
   1/*
   2 * Low level 3-way in-core file merge.
   3 */
   4
   5#ifndef LL_MERGE_H
   6#define LL_MERGE_H
   7
   8struct ll_merge_options {
   9        unsigned virtual_ancestor : 1;
  10        unsigned variant : 2;   /* favor ours, favor theirs, or union merge */
  11        unsigned renormalize : 1;
  12};
  13
  14int ll_merge(mmbuffer_t *result_buf,
  15             const char *path,
  16             mmfile_t *ancestor, const char *ancestor_label,
  17             mmfile_t *ours, const char *our_label,
  18             mmfile_t *theirs, const char *their_label,
  19             const struct ll_merge_options *opts);
  20
  21int ll_merge_marker_size(const char *path);
  22
  23#endif