├── .gitignore ├── LICENSE ├── Makefile-bsdiff.am ├── Makefile.am ├── README.md ├── autogen.sh ├── bsdiff.c ├── bsdiff.h ├── bspatch.c ├── bspatch.h └── configure.ac /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsley/bsdiff/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsley/bsdiff/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile-bsdiff.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsley/bsdiff/HEAD/Makefile-bsdiff.am -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsley/bsdiff/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsley/bsdiff/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | touch AUTHORS NEWS README ChangeLog 4 | cp LICENSE COPYING 5 | 6 | autoreconf -fis 7 | -------------------------------------------------------------------------------- /bsdiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsley/bsdiff/HEAD/bsdiff.c -------------------------------------------------------------------------------- /bsdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsley/bsdiff/HEAD/bsdiff.h -------------------------------------------------------------------------------- /bspatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsley/bsdiff/HEAD/bspatch.c -------------------------------------------------------------------------------- /bspatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsley/bsdiff/HEAD/bspatch.h -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsley/bsdiff/HEAD/configure.ac --------------------------------------------------------------------------------