/* * patch-delta.c: * recreate a buffer from a source and the delta produced by diff-delta.c * * (C) 2005 Nicolas Pitre <[email protected]> * * This code is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #include "git-compat-util.h" #include "delta.h" void *patch_delta(const void *src_buf, unsigned long src_size, const void *delta_buf, unsigned long delta_size, unsigned long *dst_size) { … }