6 lines
132 B
Bash
Executable File
6 lines
132 B
Bash
Executable File
#!/bin/bash
|
|
set -xue
|
|
|
|
find . -type f -name '*.c' -exec clang-format -i {} \;
|
|
find . -type f -name '*.h' -exec clang-format -i {} \;
|