1/*2* Low level 3-way in-core file merge.3*/45#ifndef LL_MERGE_H6#define LL_MERGE_H78int ll_merge(mmbuffer_t *result_buf,9const char *path,10mmfile_t *ancestor,11mmfile_t *ours, const char *our_label,12mmfile_t *theirs, const char *their_label,13int virtual_ancestor);1415#endif