aboutsummaryrefslogtreecommitdiff
path: root/scripts/code-format.py
blob: fef9eb66a9dd217c53f830a91c6d94100f1c34c0 (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/env python3

import os

os.system('astyle --options=code-format.cfg "../src/*.c,*.h"')
os.system('astyle --options=code-format.cfg "../demos/*.c,*.h"')
os.system('astyle --options=code-format.cfg "../examples/*.c,*.h"')
os.system('astyle --options=code-format.cfg "../tests/src/test_cases/*.c"')