merge-blobs.h 232 B

123456789101112
  1. #ifndef MERGE_BLOBS_H
  2. #define MERGE_BLOBS_H
  3. struct blob;
  4. struct index_state;
  5. void *merge_blobs(struct index_state *, const char *,
  6. struct blob *, struct blob *,
  7. struct blob *, unsigned long *);
  8. #endif /* MERGE_BLOBS_H */