├── .gitignore ├── README.md ├── makefile └── s3p_extract.c /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.out 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | quickly hacked together, but it works. 2 | 3 | Now with repacking! 4 | -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mon/s3p_extract/HEAD/makefile -------------------------------------------------------------------------------- /s3p_extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mon/s3p_extract/HEAD/s3p_extract.c --------------------------------------------------------------------------------