mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
9 lines
194 B
C
9 lines
194 B
C
|
#ifndef MERGE_BLOBS_H
|
||
|
#define MERGE_BLOBS_H
|
||
|
|
||
|
#include "blob.h"
|
||
|
|
||
|
extern void *merge_blobs(const char *, struct blob *, struct blob *, struct blob *, unsigned long *);
|
||
|
|
||
|
#endif /* MERGE_BLOBS_H */
|