├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE.txt ├── README.txt ├── docs ├── CHANGELOG.txt ├── CREDITS.txt ├── Doxyfile ├── INSTALL.txt ├── README-API-documentation.txt └── TODO.txt ├── extras ├── README-CSharp.txt ├── abs-file.h ├── buildbot-checker.sh ├── buildbot-emscripten.sh ├── buildbot-os2.sh ├── buildbot-raspberrypi.sh ├── casefolding.txt ├── globbing.c ├── globbing.h ├── ignorecase.c ├── ignorecase.h ├── makecasefoldhashtable.pl ├── physfs.pc.in ├── physfshttpd.c ├── physfsrwops.c ├── physfsrwops.h ├── physfsunpack.c ├── selfextract.c └── uninstall.sh ├── src ├── physfs.c ├── physfs.h ├── physfs_archiver_7z.c ├── physfs_archiver_dir.c ├── physfs_archiver_grp.c ├── physfs_archiver_hog.c ├── physfs_archiver_iso9660.c ├── physfs_archiver_mvl.c ├── physfs_archiver_qpak.c ├── physfs_archiver_slb.c ├── physfs_archiver_unpacked.c ├── physfs_archiver_vdf.c ├── physfs_archiver_wad.c ├── physfs_archiver_zip.c ├── physfs_byteorder.c ├── physfs_casefolding.h ├── physfs_internal.h ├── physfs_lzmasdk.h ├── physfs_miniz.h ├── physfs_platform_android.c ├── physfs_platform_apple.m ├── physfs_platform_haiku.cpp ├── physfs_platform_os2.c ├── physfs_platform_posix.c ├── physfs_platform_qnx.c ├── physfs_platform_unix.c ├── physfs_platform_windows.c ├── physfs_platform_winrt.cpp ├── physfs_platforms.h └── physfs_unicode.c └── test └── test_physfs.c /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | cmake-build 2 | 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/README.txt -------------------------------------------------------------------------------- /docs/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/docs/CHANGELOG.txt -------------------------------------------------------------------------------- /docs/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/docs/CREDITS.txt -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/docs/INSTALL.txt -------------------------------------------------------------------------------- /docs/README-API-documentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/docs/README-API-documentation.txt -------------------------------------------------------------------------------- /docs/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/docs/TODO.txt -------------------------------------------------------------------------------- /extras/README-CSharp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/extras/README-CSharp.txt -------------------------------------------------------------------------------- /extras/abs-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/extras/abs-file.h -------------------------------------------------------------------------------- /extras/buildbot-checker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/extras/buildbot-checker.sh -------------------------------------------------------------------------------- /extras/buildbot-emscripten.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/extras/buildbot-emscripten.sh -------------------------------------------------------------------------------- /extras/buildbot-os2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/extras/buildbot-os2.sh -------------------------------------------------------------------------------- /extras/buildbot-raspberrypi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/extras/buildbot-raspberrypi.sh -------------------------------------------------------------------------------- /extras/casefolding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/extras/casefolding.txt -------------------------------------------------------------------------------- /extras/globbing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/extras/globbing.c -------------------------------------------------------------------------------- /extras/globbing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/extras/globbing.h -------------------------------------------------------------------------------- /extras/ignorecase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/extras/ignorecase.c -------------------------------------------------------------------------------- /extras/ignorecase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/extras/ignorecase.h -------------------------------------------------------------------------------- /extras/makecasefoldhashtable.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/extras/makecasefoldhashtable.pl -------------------------------------------------------------------------------- /extras/physfs.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/extras/physfs.pc.in -------------------------------------------------------------------------------- /extras/physfshttpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/extras/physfshttpd.c -------------------------------------------------------------------------------- /extras/physfsrwops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/extras/physfsrwops.c -------------------------------------------------------------------------------- /extras/physfsrwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/extras/physfsrwops.h -------------------------------------------------------------------------------- /extras/physfsunpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/extras/physfsunpack.c -------------------------------------------------------------------------------- /extras/selfextract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/extras/selfextract.c -------------------------------------------------------------------------------- /extras/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/extras/uninstall.sh -------------------------------------------------------------------------------- /src/physfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs.c -------------------------------------------------------------------------------- /src/physfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs.h -------------------------------------------------------------------------------- /src/physfs_archiver_7z.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_archiver_7z.c -------------------------------------------------------------------------------- /src/physfs_archiver_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_archiver_dir.c -------------------------------------------------------------------------------- /src/physfs_archiver_grp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_archiver_grp.c -------------------------------------------------------------------------------- /src/physfs_archiver_hog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_archiver_hog.c -------------------------------------------------------------------------------- /src/physfs_archiver_iso9660.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_archiver_iso9660.c -------------------------------------------------------------------------------- /src/physfs_archiver_mvl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_archiver_mvl.c -------------------------------------------------------------------------------- /src/physfs_archiver_qpak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_archiver_qpak.c -------------------------------------------------------------------------------- /src/physfs_archiver_slb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_archiver_slb.c -------------------------------------------------------------------------------- /src/physfs_archiver_unpacked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_archiver_unpacked.c -------------------------------------------------------------------------------- /src/physfs_archiver_vdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_archiver_vdf.c -------------------------------------------------------------------------------- /src/physfs_archiver_wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_archiver_wad.c -------------------------------------------------------------------------------- /src/physfs_archiver_zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_archiver_zip.c -------------------------------------------------------------------------------- /src/physfs_byteorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_byteorder.c -------------------------------------------------------------------------------- /src/physfs_casefolding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_casefolding.h -------------------------------------------------------------------------------- /src/physfs_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_internal.h -------------------------------------------------------------------------------- /src/physfs_lzmasdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_lzmasdk.h -------------------------------------------------------------------------------- /src/physfs_miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_miniz.h -------------------------------------------------------------------------------- /src/physfs_platform_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_platform_android.c -------------------------------------------------------------------------------- /src/physfs_platform_apple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_platform_apple.m -------------------------------------------------------------------------------- /src/physfs_platform_haiku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_platform_haiku.cpp -------------------------------------------------------------------------------- /src/physfs_platform_os2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_platform_os2.c -------------------------------------------------------------------------------- /src/physfs_platform_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_platform_posix.c -------------------------------------------------------------------------------- /src/physfs_platform_qnx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_platform_qnx.c -------------------------------------------------------------------------------- /src/physfs_platform_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_platform_unix.c -------------------------------------------------------------------------------- /src/physfs_platform_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_platform_windows.c -------------------------------------------------------------------------------- /src/physfs_platform_winrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_platform_winrt.cpp -------------------------------------------------------------------------------- /src/physfs_platforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_platforms.h -------------------------------------------------------------------------------- /src/physfs_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/src/physfs_unicode.c -------------------------------------------------------------------------------- /test/test_physfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criptych/physfs-old/HEAD/test/test_physfs.c --------------------------------------------------------------------------------