Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 7a6a90c6ec48fc78c83d7090d6c1b95d8f3739c0 authored by Junio C Hamano on 08 January 2020, 20:43:54 UTC
Git 2.25-rc2
Tip revision: 7a6a90c
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