mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
16 lines
318 B
Bash
16 lines
318 B
Bash
#!/bin/sh
|
|
|
|
format="clang-format -i -style=file"
|
|
|
|
for dir in bin include src t; do
|
|
c_files=`find $dir -maxdepth 1 -name '*.c'`
|
|
if [ "$c_files" != "" ]; then
|
|
$format $dir/*.c;
|
|
fi
|
|
|
|
h_files=`find $dir -maxdepth 1 -name '*.h'`
|
|
if [ "$h_files" != "" ]; then
|
|
$format $dir/*.h;
|
|
fi
|
|
done
|