1#ifndef MERGE_RECURSIVE_H
2#define MERGE_RECURSIVE_H
34
int merge_recursive(struct commit *h1,
5struct commit *h2,
6const char *branch1,
7const char *branch2,
8struct commit_list *ancestors,
9struct commit **result);
1011
int merge_trees(struct tree *head,
12struct tree *merge,
13struct tree *common,
14const char *branch1,
15const char *branch2,
16struct tree **result);
1718
struct tree *write_tree_from_memory(void);
1920
#endif