repo.or.cz
/
git
/
mjg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
receive-pack: switch global variable 'commands' to a parameter
[git/mjg.git]
/
ll-merge.h
blob
57889227b1782d3792be2046fbb54bca67b779de
1
/*
2
* Low level 3-way in-core file merge.
3
*/
4
5
#ifndef LL_MERGE_H
6
#define LL_MERGE_H
7
8
int
ll_merge
(
mmbuffer_t
*
result_buf
,
9
const char
*
path
,
10
mmfile_t
*
ancestor
,
11
mmfile_t
*
ours
,
const char
*
our_label
,
12
mmfile_t
*
theirs
,
const char
*
their_label
,
13
int
flag
);
14
15
int
ll_merge_marker_size
(
const char
*
path
);
16
17
#endif