├── .github └── workflows │ └── test.yml ├── LICENSE ├── README.md ├── file_compat.h └── test ├── .gitignore ├── CMakeLists.txt ├── README.md ├── test.c ├── test.cxx └── test.h /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brackeen/file-compat/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brackeen/file-compat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brackeen/file-compat/HEAD/README.md -------------------------------------------------------------------------------- /file_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brackeen/file-compat/HEAD/file_compat.h -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brackeen/file-compat/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brackeen/file-compat/HEAD/test/README.md -------------------------------------------------------------------------------- /test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brackeen/file-compat/HEAD/test/test.c -------------------------------------------------------------------------------- /test/test.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brackeen/file-compat/HEAD/test/test.cxx -------------------------------------------------------------------------------- /test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brackeen/file-compat/HEAD/test/test.h --------------------------------------------------------------------------------