feat(format.sh): format script

This commit is contained in:
2026-01-26 01:39:31 +01:00
parent 968b26fd93
commit 5cd7aa3cab

5
format.sh Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/bash
set -xue
find . -type f -name '*.c' -exec clang-format -i {} \;
find . -type f -name '*.h' -exec clang-format -i {} \;