4 lines
106 B
Bash
4 lines
106 B
Bash
|
#!/bin/bash
|
||
|
find src -type f \( -iname '*.c' -or -iname '*.h' \) -exec clang-format -i -style=file {} \;
|
||
|
|