3 lines
126 B
Bash
Executable file
3 lines
126 B
Bash
Executable file
#!/bin/sh
|
|
find src -name "*.h" | xargs clang-format -style=file -i
|
|
find src -name "*.cpp" | xargs clang-format -style=file -i
|