https://github.com/git/git
Raw File
Tip revision: e43ac5f23d3231f6433558931296d555592e978a authored by Junio C Hamano on 13 December 2022, 12:20:47 UTC
Git 2.37.5
Tip revision: e43ac5f
merge-blobs.h
#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 */
back to top