Staging
v0.5.1
https://github.com/git/git
Revision d4a392452e292ff924e79ec8458611c0f679d6d4 authored by Junio C Hamano on 09 October 2020, 04:53:09 UTC, committed by Junio C Hamano on 09 October 2020, 04:53:26 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 62564ba
Raw File
Tip revision: d4a392452e292ff924e79ec8458611c0f679d6d4 authored by Junio C Hamano on 09 October 2020, 04:53:09 UTC
Git 2.29-rc1
Tip revision: d4a3924
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