├── .gitignore ├── LICENSE ├── Makefile.am ├── README.md ├── autogen.sh ├── conf.sh ├── configure.ac ├── include ├── cppip.h └── index_modes.h └── src ├── Makefile.am ├── extract.c ├── index.c ├── init.c ├── main.c ├── util.c └── verify.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschiffm/cppip/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschiffm/cppip/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschiffm/cppip/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschiffm/cppip/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec autoreconf -fvi 3 | -------------------------------------------------------------------------------- /conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschiffm/cppip/HEAD/conf.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschiffm/cppip/HEAD/configure.ac -------------------------------------------------------------------------------- /include/cppip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschiffm/cppip/HEAD/include/cppip.h -------------------------------------------------------------------------------- /include/index_modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschiffm/cppip/HEAD/include/index_modes.h -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschiffm/cppip/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschiffm/cppip/HEAD/src/extract.c -------------------------------------------------------------------------------- /src/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschiffm/cppip/HEAD/src/index.c -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschiffm/cppip/HEAD/src/init.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschiffm/cppip/HEAD/src/main.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschiffm/cppip/HEAD/src/util.c -------------------------------------------------------------------------------- /src/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschiffm/cppip/HEAD/src/verify.c --------------------------------------------------------------------------------