minecraft-launcher-libs/format-code

11 lines
134 B
Plaintext
Raw Permalink Normal View History

2023-07-31 23:12:24 +03:00
#!/bin/sh
files=(
"src/main.c"
)
for file in "${files[@]}"
do
clang-format -i --style=LLVM --sort-includes=false $file
done