3 lines
114 B
Bash
Executable file
3 lines
114 B
Bash
Executable file
#!/bin/bash
|
|
|
|
find . -regex '.*\.\(c\|h\)' -not -path "./CMakeFiles/*" -exec clang-format -i --sort-includes {} \;
|