#!/bin/sh
# good_looking Version 0.4 (c) 1998-2002 Andreas Scherf
#
FILES="*.c
*.cpp
*.h"

for file in $FILES
do
# -di16 int       foo (means the space between int and foo
# -ce } else {
# -br { comes after )
echo identing $file ...
#indent -br -ce -di16 -l300 "$file"
astyle -c -C "$file"
done

rm *.orig
echo Looks nice again ..
