|
|
|
@ -5,13 +5,13 @@ if [[ $1 == "" ]]; then
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
astyle \
|
|
|
|
|
ASTYLEARGS=$( cat <<EOF
|
|
|
|
|
--indent=tab \
|
|
|
|
|
--indent-classes \
|
|
|
|
|
--indent-switches \
|
|
|
|
|
--indent-cases \
|
|
|
|
|
--indent-namespaces \
|
|
|
|
|
--indent-labels\ \
|
|
|
|
|
--indent-labels \
|
|
|
|
|
--indent-col1-comments \
|
|
|
|
|
\
|
|
|
|
|
--unpad-paren \
|
|
|
|
@ -19,6 +19,11 @@ astyle \
|
|
|
|
|
--style=java \
|
|
|
|
|
--add-brackets \
|
|
|
|
|
--break-closing-brackets \
|
|
|
|
|
--keep-one-line-statements \
|
|
|
|
|
\
|
|
|
|
|
--recursive $1/*.c $1/*.cc $1/*.cpp $1/*.h
|
|
|
|
|
--keep-one-line-statements
|
|
|
|
|
EOF
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
astyle $ASTYLEARGS --recursive $1/*.c || true
|
|
|
|
|
astyle $ASTYLEARGS --recursive $1/*.cc || true
|
|
|
|
|
astyle $ASTYLEARGS --recursive $1/*.cpp || true
|
|
|
|
|
astyle $ASTYLEARGS --recursive $1/*.h || true
|
|
|
|
|