3 lines
96 B
Bash
Executable file
3 lines
96 B
Bash
Executable file
#!/bin/sh
|
|
DIRS="include src"
|
|
clang-format --verbose -i `find $DIRS -name "*.c" -or -name "*.h"`
|