apply auto-formatter
All checks were successful
fsfw/fsfw example hosted/pipeline/head This commit looks good

This commit is contained in:
2022-05-05 20:55:48 +02:00
parent a9907fc7b3
commit d2337a769c
21 changed files with 513 additions and 532 deletions

7
scripts/apply-clang-format.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
if [[ ! -f README.md ]]; then
cd ..
fi
find ./bsp_hosted -iname *.h -o -iname *.cpp -o -iname *.c | xargs clang-format --style=file -i
find ./example_common -iname *.h -o -iname *.cpp -o -iname *.c | xargs clang-format --style=file -i