feat(format.sh): format script

This commit is contained in:
2026-01-26 01:39:31 +01:00
parent b3db8e7e59
commit ef9899bac1

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 {} \;