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