├── .github └── workflows │ └── build-and-test.yml ├── .gitignore ├── CMakeLists.txt ├── ConvertUTF.c ├── ConvertUTF.h ├── ConvertUTF_readme.txt ├── Doxyfile ├── LICENCE.txt ├── README.md ├── SimpleIni.h ├── SimpleIniConfig.cmake.in ├── release.txt └── tests ├── .gitignore ├── CMakeLists.txt ├── example.ini ├── tests.ini ├── ts-boolean.cpp ├── ts-bugfix.cpp ├── ts-casesensitivity.cpp ├── ts-deletion.cpp ├── ts-edgecases.cpp ├── ts-generic.cpp ├── ts-multiline.cpp ├── ts-noconvert.cpp ├── ts-numeric.cpp ├── ts-quotes.cpp ├── ts-roundtrip.cpp ├── ts-sections.cpp ├── ts-snippets.cpp ├── ts-utf8.cpp └── ts-wchar.cpp /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ConvertUTF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/ConvertUTF.c -------------------------------------------------------------------------------- /ConvertUTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/ConvertUTF.h -------------------------------------------------------------------------------- /ConvertUTF_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/ConvertUTF_readme.txt -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/README.md -------------------------------------------------------------------------------- /SimpleIni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/SimpleIni.h -------------------------------------------------------------------------------- /SimpleIniConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/SimpleIniConfig.cmake.in -------------------------------------------------------------------------------- /release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/release.txt -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | example2.ini 2 | 3 | tests 4 | *.o 5 | 6 | -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/example.ini: -------------------------------------------------------------------------------- 1 | [section] 2 | key = value 3 | -------------------------------------------------------------------------------- /tests/tests.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/tests/tests.ini -------------------------------------------------------------------------------- /tests/ts-boolean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/tests/ts-boolean.cpp -------------------------------------------------------------------------------- /tests/ts-bugfix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/tests/ts-bugfix.cpp -------------------------------------------------------------------------------- /tests/ts-casesensitivity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/tests/ts-casesensitivity.cpp -------------------------------------------------------------------------------- /tests/ts-deletion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/tests/ts-deletion.cpp -------------------------------------------------------------------------------- /tests/ts-edgecases.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/tests/ts-edgecases.cpp -------------------------------------------------------------------------------- /tests/ts-generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/tests/ts-generic.cpp -------------------------------------------------------------------------------- /tests/ts-multiline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/tests/ts-multiline.cpp -------------------------------------------------------------------------------- /tests/ts-noconvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/tests/ts-noconvert.cpp -------------------------------------------------------------------------------- /tests/ts-numeric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/tests/ts-numeric.cpp -------------------------------------------------------------------------------- /tests/ts-quotes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/tests/ts-quotes.cpp -------------------------------------------------------------------------------- /tests/ts-roundtrip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/tests/ts-roundtrip.cpp -------------------------------------------------------------------------------- /tests/ts-sections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/tests/ts-sections.cpp -------------------------------------------------------------------------------- /tests/ts-snippets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/tests/ts-snippets.cpp -------------------------------------------------------------------------------- /tests/ts-utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/tests/ts-utf8.cpp -------------------------------------------------------------------------------- /tests/ts-wchar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brofield/simpleini/HEAD/tests/ts-wchar.cpp --------------------------------------------------------------------------------