2021-11-25 03:19:09 +08:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
2022-04-26 10:45:12 +02:00
|
|
|
print("\nFormatting demos")
|
2022-02-24 11:44:39 -06:00
|
|
|
os.system('astyle --options=code-format.cfg --recursive "../demos/*.c,*.h"')
|
2022-04-26 10:45:12 +02:00
|
|
|
|
|
|
|
print("\nFormatting examples")
|
2022-02-24 11:44:39 -06:00
|
|
|
os.system('astyle --options=code-format.cfg --recursive "../examples/*.c,*.h"')
|
2022-04-26 10:45:12 +02:00
|
|
|
|
2022-07-18 21:28:16 +08:00
|
|
|
print("Formatting src")
|
|
|
|
os.system('astyle --options=code-format.cfg --recursive "../src/*.c,*.h"')
|
|
|
|
|
2022-04-26 10:45:12 +02:00
|
|
|
print("\nFormatting tests")
|
2022-07-18 21:28:16 +08:00
|
|
|
os.system('astyle --options=code-format.cfg --recursive "../tests/*.c,*.h"')
|