diff options
author | Matthew Endsley <mendsley@gmail.com> | 2012-05-13 15:10:59 -0700 |
---|---|---|
committer | Matthew Endsley <mendsley@gmail.com> | 2012-05-14 01:04:24 -0700 |
commit | 6f2a68f2fbb4083f35685ed53ca9209efc2b3d5c (patch) | |
tree | 085e85e1e7064754a55754a77a844a6f8869a849 /bsdiff.c | |
parent | f5e05899411743e0aafb23e383d1577bcd849f3a (diff) | |
download | bsdiff-6f2a68f2fbb4083f35685ed53ca9209efc2b3d5c.tar.gz |
adding prototype for bsdiff
Diffstat (limited to 'bsdiff.c')
-rw-r--r-- | bsdiff.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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> |