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

import os

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("Formatting src")
os.system('astyle --options=code-format.cfg --recursive "../src/*.c,*.h"')

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