You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
198 B
10 lines
198 B
24 years ago
|
#!/bin/sh
|
||
|
|
||
|
for i in *.c src/*.c utils/*.c ; do
|
||
|
if test -f $i; then
|
||
|
echo Reformatting $i
|
||
|
indent -bap -br -ce -ci4 -cli2 -cs -di1 -i2 -l140 -lp -lps -nbc -npcs -nss -nsob -psl $i
|
||
|
fi
|
||
|
done
|
||
|
|