├── .astylerc ├── .gitignore ├── CMakeLists.txt ├── IMPORTANT ├── LICENSE.txt ├── Makefile ├── README.md ├── configure-gh-pages ├── link_git_modules ├── new_source ├── src ├── d_string.c ├── d_string.h └── main.c ├── templates ├── README.md.in ├── doxygen.conf.in ├── template.c.in ├── template.h.in └── version.h.in ├── test ├── CuTest.c ├── CuTest.h └── make-tests.sh ├── tools ├── Toolchain-MinGW-w64-32bit.cmake ├── Toolchain-MinGW-w64-64bit.cmake └── Toolchain-mingw32.cmake └── update_git_modules /.astylerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/.astylerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /IMPORTANT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/IMPORTANT -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/README.md -------------------------------------------------------------------------------- /configure-gh-pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/configure-gh-pages -------------------------------------------------------------------------------- /link_git_modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/link_git_modules -------------------------------------------------------------------------------- /new_source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/new_source -------------------------------------------------------------------------------- /src/d_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/src/d_string.c -------------------------------------------------------------------------------- /src/d_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/src/d_string.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/src/main.c -------------------------------------------------------------------------------- /templates/README.md.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/templates/README.md.in -------------------------------------------------------------------------------- /templates/doxygen.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/templates/doxygen.conf.in -------------------------------------------------------------------------------- /templates/template.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/templates/template.c.in -------------------------------------------------------------------------------- /templates/template.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/templates/template.h.in -------------------------------------------------------------------------------- /templates/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/templates/version.h.in -------------------------------------------------------------------------------- /test/CuTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/test/CuTest.c -------------------------------------------------------------------------------- /test/CuTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/test/CuTest.h -------------------------------------------------------------------------------- /test/make-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/test/make-tests.sh -------------------------------------------------------------------------------- /tools/Toolchain-MinGW-w64-32bit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/tools/Toolchain-MinGW-w64-32bit.cmake -------------------------------------------------------------------------------- /tools/Toolchain-MinGW-w64-64bit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/tools/Toolchain-MinGW-w64-64bit.cmake -------------------------------------------------------------------------------- /tools/Toolchain-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/tools/Toolchain-mingw32.cmake -------------------------------------------------------------------------------- /update_git_modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fletcher/c-template/HEAD/update_git_modules --------------------------------------------------------------------------------