1#!/usr/bin/env python3 2 3import os 4 5print("Formatting src") 6os.system('astyle --options=code-format.cfg --recursive "../src/*.c,*.h"') 7 8print("\nFormatting demos") 9os.system('astyle --options=code-format.cfg --recursive "../demos/*.c,*.h"') 10 11print("\nFormatting examples") 12os.system('astyle --options=code-format.cfg --recursive "../examples/*.c,*.h"') 13 14print("\nFormatting tests") 15os.system('astyle --options=code-format.cfg --recursive "../tests/src/test_cases/*.c"') 16