2007-12-24 09:36:00 +01:00
|
|
|
/*
|
|
|
|
* 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,
|
2009-11-26 03:23:55 +01:00
|
|
|
int flag);
|
2007-12-24 09:36:00 +01:00
|
|
|
|
2010-01-17 08:28:46 +01:00
|
|
|
int ll_merge_marker_size(const char *path);
|
|
|
|
|
2007-12-24 09:36:00 +01:00
|
|
|
#endif
|