11 lines
134 B
Plaintext
11 lines
134 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
files=(
|
||
|
"src/main.c"
|
||
|
)
|
||
|
|
||
|
for file in "${files[@]}"
|
||
|
do
|
||
|
clang-format -i --style=LLVM --sort-includes=false $file
|
||
|
done
|