Staging
v0.5.1
https://github.com/git/git
Revision 45e9a825edf9064ff76f6ff10357fdc79497f0eb authored by Junio C Hamano on 30 June 2010, 19:22:13 UTC, committed by Junio C Hamano on 30 June 2010, 22:49:18 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 88202b9
Raw File
Tip revision: 45e9a825edf9064ff76f6ff10357fdc79497f0eb authored by Junio C Hamano on 30 June 2010, 19:22:13 UTC
Git 1.7.2-rc1
Tip revision: 45e9a82
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, const char *ancestor_label,
	     mmfile_t *ours, const char *our_label,
	     mmfile_t *theirs, const char *their_label,
	     int flag);

int ll_merge_marker_size(const char *path);

#endif
back to top