Staging
v0.5.1
Revision 9861b644e045b5ee0e16dea65b44419205090960 authored by Junio C Hamano on 10 December 2009, 23:42:30 UTC, committed by Junio C Hamano on 10 December 2009, 23:42:30 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 782a000
Raw File
ll-merge.h
/*
 * Low level 3-way in-core file merge.
 */

#ifndef LL_MERGE_H
#define LL_MERGE_H

int ll_merge(mmbuffer_t *result_buf,
	     const char *path,
	     mmfile_t *ancestor,
	     mmfile_t *ours, const char *our_label,
	     mmfile_t *theirs, const char *their_label,
	     int virtual_ancestor);

#endif
back to top