Add scripts for checking formatting, linting etc

This commit is contained in:
2025-08-09 15:22:30 +01:00
parent 3e8a9d6789
commit 00d1961d36
5 changed files with 17 additions and 0 deletions

6
scripts/list-source-files.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/sh
find . \
-not \( -path './.git' -prune \) \
-not \( -path './build' -prune \) \
-not \( -path './dep' -prune \) \
-name '*.c' -o -name '*.h'