Fixed pointer alignment in formatting script.

This commit is contained in:
Armin Novak 2014-08-18 19:34:33 +02:00 committed by Armin Novak
parent a738f3c6ce
commit a5ca75c3ab
1 changed files with 12 additions and 11 deletions

23
scripts/format_code.sh Executable file → Normal file
View File

@ -2,22 +2,23 @@
ASTYLE=`which astyle`
if [ ! -x $ASTYLE ];
if [ ! -x $ASTYLE ];
then
echo "No astyle found in path, please install."
exit 1
echo "No astyle found in path, please install."
exit 1
fi
if [ $# -le 0 ]; then
echo "Usage:"
echo "\t$0 <file1> [<file2> ...]"
echo "Usage:"
echo "\t$0 <file1> [<file2> ...]"
# echo "\t$0 -r <directory>"
exit 2
exit 2
fi
$ASTYLE --lineend=linux --mode=c --indent=force-tab=4 --brackets=linux --pad-header \
--indent-switches --indent-cases --indent-preprocessor \
--indent-col1-comments --delete-empty-lines --break-closing-brackets \
--align-pointer=name --indent-labels --brackets=break \
--unpad-paren --break-blocks $@
exit $?
--indent-switches --indent-cases --indent-preprocessor \
--indent-col1-comments --delete-empty-lines --break-closing-brackets \
--align-pointer=type --indent-labels --brackets=break \
--unpad-paren --break-blocks $@
exit $?