├── CMakeLists.txt ├── LICENSE ├── README.md └── src ├── nozip.c ├── nozip.h ├── stb_inflate.h └── unzip.c /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivkin/nozip/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivkin/nozip/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # nozip 2 | Tiny C library for reading ZIP files 3 | -------------------------------------------------------------------------------- /src/nozip.c: -------------------------------------------------------------------------------- 1 | #define NOZIP_IMPLEMENTATION 2 | #include "nozip.h" 3 | -------------------------------------------------------------------------------- /src/nozip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivkin/nozip/HEAD/src/nozip.h -------------------------------------------------------------------------------- /src/stb_inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivkin/nozip/HEAD/src/stb_inflate.h -------------------------------------------------------------------------------- /src/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivkin/nozip/HEAD/src/unzip.c --------------------------------------------------------------------------------