├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bin ├── .gitkeep └── run ├── data ├── .gitkeep ├── input │ └── .gitkeep ├── interim │ └── .gitkeep ├── output │ └── .gitkeep └── raw │ └── .gitkeep ├── docs └── .gitkeep ├── include └── other.h ├── lib └── .gitkeep ├── src ├── main.c └── other.c └── tests └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackWetherell/c-project-structure/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackWetherell/c-project-structure/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackWetherell/c-project-structure/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackWetherell/c-project-structure/HEAD/README.md -------------------------------------------------------------------------------- /bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackWetherell/c-project-structure/HEAD/bin/run -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/input/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/interim/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/raw/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackWetherell/c-project-structure/HEAD/include/other.h -------------------------------------------------------------------------------- /lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackWetherell/c-project-structure/HEAD/src/main.c -------------------------------------------------------------------------------- /src/other.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackWetherell/c-project-structure/HEAD/src/other.c -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------