https://github.com/git/git
Raw File
Tip revision: 7556e5d737b917d31ac3729b0f5e2391da7e132a authored by Johannes Schindelin on 06 February 2023, 08:43:30 UTC
Git 2.38.4
Tip revision: 7556e5d
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