├── .gitignore ├── Makefile ├── README.md └── src ├── lib.c ├── main.c └── test.c /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoeno/toy-c-project-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoeno/toy-c-project-template/HEAD/README.md -------------------------------------------------------------------------------- /src/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoeno/toy-c-project-template/HEAD/src/lib.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoeno/toy-c-project-template/HEAD/src/main.c -------------------------------------------------------------------------------- /src/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoeno/toy-c-project-template/HEAD/src/test.c --------------------------------------------------------------------------------