├── .clang-format ├── .github └── workflows │ └── build.yml ├── .gitignore ├── Dockerfile ├── Makefile ├── README.md ├── meta └── icon.png └── src └── main.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/UFDiine/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/UFDiine/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/UFDiine/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/UFDiine/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/UFDiine/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/UFDiine/HEAD/README.md -------------------------------------------------------------------------------- /meta/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/UFDiine/HEAD/meta/icon.png -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryOderNichts/UFDiine/HEAD/src/main.c --------------------------------------------------------------------------------