Welcome to mirror list, hosted at ThFree Co, Russian Federation.

merge-blobs.h - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 863a7e08071367a9dcf622095302f15744c8271c (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef MERGE_BLOBS_H
#define MERGE_BLOBS_H

struct blob;
struct index_state;

void *merge_blobs(struct index_state *, const char *,
			 struct blob *, struct blob *,
			 struct blob *, unsigned long *);

#endif /* MERGE_BLOBS_H */