├── .clang-format ├── .gitignore ├── LICENSE ├── README.md ├── include └── mm_file │ └── mm_file.hpp └── test ├── CMakeLists.txt └── test.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermp/mm_file/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | test/build 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermp/mm_file/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermp/mm_file/HEAD/README.md -------------------------------------------------------------------------------- /include/mm_file/mm_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermp/mm_file/HEAD/include/mm_file/mm_file.hpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermp/mm_file/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermp/mm_file/HEAD/test/test.cpp --------------------------------------------------------------------------------