blob: 42faee6eec183938dc70a8ec005b62a21931e524 (
plain)
1
2
3
4
5
6
7
8
|
#!/usr/bin/env python3
import os
os.system('astyle --options=code-format.cfg --recursive "../src/*.c,*.h"')
os.system('astyle --options=code-format.cfg --recursive "../demos/*.c,*.h"')
os.system('astyle --options=code-format.cfg --recursive "../examples/*.c,*.h"')
os.system('astyle --options=code-format.cfg --recursive "../tests/src/test_cases/*.c"')
|