├── .editorconfig ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── debug-linux.sh ├── release-linux.sh ├── release-linux32.sh ├── release-win32.sh └── src ├── decoder ├── README ├── aplib.c ├── decoder.h ├── lzo.c ├── private.h ├── ucl.c ├── yaz.c └── zlib.c ├── file.c ├── file.h ├── main.c ├── n64crc.c ├── n64crc.h ├── wow.c └── wow.h /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64dev/z64decompress/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | o/ 3 | test/ 4 | z64decompress 5 | *.z64 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64dev/z64decompress/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64dev/z64decompress/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64dev/z64decompress/HEAD/README.md -------------------------------------------------------------------------------- /debug-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64dev/z64decompress/HEAD/debug-linux.sh -------------------------------------------------------------------------------- /release-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64dev/z64decompress/HEAD/release-linux.sh -------------------------------------------------------------------------------- /release-linux32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64dev/z64decompress/HEAD/release-linux32.sh -------------------------------------------------------------------------------- /release-win32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64dev/z64decompress/HEAD/release-win32.sh -------------------------------------------------------------------------------- /src/decoder/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64dev/z64decompress/HEAD/src/decoder/README -------------------------------------------------------------------------------- /src/decoder/aplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64dev/z64decompress/HEAD/src/decoder/aplib.c -------------------------------------------------------------------------------- /src/decoder/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64dev/z64decompress/HEAD/src/decoder/decoder.h -------------------------------------------------------------------------------- /src/decoder/lzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64dev/z64decompress/HEAD/src/decoder/lzo.c -------------------------------------------------------------------------------- /src/decoder/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64dev/z64decompress/HEAD/src/decoder/private.h -------------------------------------------------------------------------------- /src/decoder/ucl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64dev/z64decompress/HEAD/src/decoder/ucl.c -------------------------------------------------------------------------------- /src/decoder/yaz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64dev/z64decompress/HEAD/src/decoder/yaz.c -------------------------------------------------------------------------------- /src/decoder/zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64dev/z64decompress/HEAD/src/decoder/zlib.c -------------------------------------------------------------------------------- /src/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64dev/z64decompress/HEAD/src/file.c -------------------------------------------------------------------------------- /src/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64dev/z64decompress/HEAD/src/file.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64dev/z64decompress/HEAD/src/main.c -------------------------------------------------------------------------------- /src/n64crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64dev/z64decompress/HEAD/src/n64crc.c -------------------------------------------------------------------------------- /src/n64crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64dev/z64decompress/HEAD/src/n64crc.h -------------------------------------------------------------------------------- /src/wow.c: -------------------------------------------------------------------------------- 1 | #define WOW_IMPLEMENTATION 2 | #include "wow.h" 3 | 4 | -------------------------------------------------------------------------------- /src/wow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64dev/z64decompress/HEAD/src/wow.h --------------------------------------------------------------------------------