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