Staging
v0.5.1
https://github.com/git/git
Revision dd34b6be8a3e869f3e0d62a13115f02d90cf4f80 authored by Junio C Hamano on 03 September 2010, 16:38:53 UTC, committed by Junio C Hamano on 03 September 2010, 16:38:53 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent e78d01b
Raw File
Tip revision: dd34b6be8a3e869f3e0d62a13115f02d90cf4f80 authored by Junio C Hamano on 03 September 2010, 16:38:53 UTC
Git 1.7.2.3
Tip revision: dd34b6b
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