├── LICENSE.txt ├── README.md ├── miniphysfs.h └── test ├── Makefile ├── example.c ├── physfs.c ├── physfs_platform.c └── test_physfs.c /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubart/miniphysfs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubart/miniphysfs/HEAD/README.md -------------------------------------------------------------------------------- /miniphysfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubart/miniphysfs/HEAD/miniphysfs.h -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubart/miniphysfs/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubart/miniphysfs/HEAD/test/example.c -------------------------------------------------------------------------------- /test/physfs.c: -------------------------------------------------------------------------------- 1 | #define PHYSFS_IMPL 2 | #include "miniphysfs.h" 3 | -------------------------------------------------------------------------------- /test/physfs_platform.c: -------------------------------------------------------------------------------- 1 | #define PHYSFS_PLATFORM_IMPL 2 | #include "miniphysfs.h" 3 | -------------------------------------------------------------------------------- /test/test_physfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubart/miniphysfs/HEAD/test/test_physfs.c --------------------------------------------------------------------------------