3 lines
101 B
Bash
Executable file
3 lines
101 B
Bash
Executable file
#!/bin/bash
|
|
|
|
find . '(' -name '*.h' -o -name '*.c' ')' -exec clang-format-3.7 -style=file -i '{}' \;
|