f4a55b2797
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
12 lines
239 B
C
12 lines
239 B
C
#ifndef MERGE_BLOBS_H
|
|
#define MERGE_BLOBS_H
|
|
|
|
struct blob;
|
|
struct index_state;
|
|
|
|
extern void *merge_blobs(struct index_state *, const char *,
|
|
struct blob *, struct blob *,
|
|
struct blob *, unsigned long *);
|
|
|
|
#endif /* MERGE_BLOBS_H */
|