adding prototype for bsdiff
authorMatthew Endsley <mendsley@gmail.com>
Sun, 13 May 2012 22:10:59 +0000 (15:10 -0700)
committerMatthew Endsley <mendsley@gmail.com>
Mon, 14 May 2012 08:04:24 +0000 (01:04 -0700)
bsdiff.c

index ed45bca..4be7ebe 100644 (file)
--- a/bsdiff.c
+++ b/bsdiff.c
@@ -47,6 +47,8 @@ struct bsdiff_compressor
        int (*finish)(struct bsdiff_compressor* compressor);
 };
 
+int bsdiff(const uint8_t* old, int64_t oldsize, const uint8_t* new, int64_t newsize, struct bsdiff_compressor* compressor, struct bsdiff_header* header);
+
 #if !defined(BSDIFF_HEADER_ONLY)
 
 #include <limits.h>