blob: 57754cc8ca7b378a86b168a4fd6299fa3dfba045 [file] [log] [blame]
Junio C Hamano525ab632007-12-24 00:36:00 -08001/*
2 * Low level 3-way in-core file merge.
3 */
4
5#ifndef LL_MERGE_H
6#define LL_MERGE_H
7
8int ll_merge(mmbuffer_t *result_buf,
9 const char *path,
Jonathan Niederf01de622010-03-20 19:38:58 -050010 mmfile_t *ancestor, const char *ancestor_label,
Junio C Hamano525ab632007-12-24 00:36:00 -080011 mmfile_t *ours, const char *our_label,
12 mmfile_t *theirs, const char *their_label,
Avery Pennarun8cc5b292009-11-25 21:23:55 -050013 int flag);
Junio C Hamano525ab632007-12-24 00:36:00 -080014
Junio C Hamano85885672010-01-16 23:28:46 -080015int ll_merge_marker_size(const char *path);
16
Junio C Hamano525ab632007-12-24 00:36:00 -080017#endif