aboutsummaryrefslogtreecommitdiff
path: root/scripts/code-format.py
blob: fc126c8dfa7881f1bf2515788862f602ee0f4174 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python3

import os

print("Formatting src")
os.system('astyle --options=code-format.cfg --recursive "../src/*.c,*.h"')

print("\nFormatting demos")
os.system('astyle --options=code-format.cfg --recursive "../demos/*.c,*.h"')

print("\nFormatting examples")
os.system('astyle --options=code-format.cfg --recursive "../examples/*.c,*.h"')

print("\nFormatting tests")
os.system('astyle --options=code-format.cfg --recursive "../tests/src/test_cases/*.c"')