delta.hon commit [PATCH] Fix unpack-objects for header length information. (e1ddc97)
   1#ifndef DELTA_H
   2#define DELTA_H
   3
   4/* handling of delta buffers */
   5extern void *diff_delta(void *from_buf, unsigned long from_size,
   6                        void *to_buf, unsigned long to_size,
   7                        unsigned long *delta_size, unsigned long max_size);
   8extern void *patch_delta(void *src_buf, unsigned long src_size,
   9                         void *delta_buf, unsigned long delta_size,
  10                         unsigned long *dst_size);
  11
  12#endif