10 lines
161 B
Bash
10 lines
161 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
clang-format \
|
||
|
-style=file \
|
||
|
-i \
|
||
|
src/*.c \
|
||
|
src/*.h \
|
||
|
`find plugins -type f -name '*.c'` \
|
||
|
`find plugins -type f -name '*.h'`
|