zip/CONTRIBUTING.md
Kuba Podgórski a631ce45f7 clang-format
2021-03-06 18:13:11 +01:00

303 B

Contribution Rules/Coding Standards

No need to throw away your coding style, just do your best to follow default clang-format style. Apply clang-format to the source files before commit:

for file in $(git ls-files | \grep -E '\.(c|h)$' | \grep -v -- '#')
do
    clang-format -i $file
done