| Junio C Hamano | fa2364e | 2012-12-06 23:08:01 | [diff] [blame] | 1 | #ifndef MERGE_BLOBS_H |
| 2 | #define MERGE_BLOBS_H | ||||
| 3 | |||||
| Nguyễn Thái Ngọc Duy | f4a55b2 | 2018-09-21 15:57:28 | [diff] [blame] | 4 | struct blob; |
| 5 | struct index_state; | ||||
| Junio C Hamano | fa2364e | 2012-12-06 23:08:01 | [diff] [blame] | 6 | |
| Denton Liu | 5545442 | 2019-04-29 08:28:14 | [diff] [blame] | 7 | void *merge_blobs(struct index_state *, const char *, |
| Denton Liu | ad6dad0 | 2019-04-29 08:28:23 | [diff] [blame] | 8 | struct blob *, struct blob *, |
| 9 | struct blob *, unsigned long *); | ||||
| Junio C Hamano | fa2364e | 2012-12-06 23:08:01 | [diff] [blame] | 10 | |
| 11 | #endif /* MERGE_BLOBS_H */ | ||||