Signed-off-by: Slendi <slendi@socopon.com>
This commit is contained in:
2025-09-30 23:29:33 +03:00
parent d28bb6f8ee
commit 670848e924
4 changed files with 37 additions and 37 deletions

View File

@@ -3,6 +3,6 @@ set -euo pipefail
ROOT="$(git rev-parse --show-toplevel)"
find "$ROOT/src" -type f -name '*.cppm' -print0 | while IFS= read -r -d '' f; do
find "$ROOT/src" -type f -name '*.c' -o -name '*.h' -print0 | while IFS= read -r -d '' f; do
clang-format -i --style=file "$f"
done