diff options
| author | Paul Buetow <paul@buetow.org> | 2008-05-15 23:29:40 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-05-15 23:29:40 +0000 |
| commit | d891a923bc507f28caa69f625079755d1a2083e7 (patch) | |
| tree | 03ae20f0ecd1590629ec1e720026ccf34ddaac3f /scripts/astyle.sh | |
moved stuff the trunk
Diffstat (limited to 'scripts/astyle.sh')
| -rwxr-xr-x | scripts/astyle.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/astyle.sh b/scripts/astyle.sh new file mode 100755 index 0000000..b9dbc45 --- /dev/null +++ b/scripts/astyle.sh @@ -0,0 +1,14 @@ +#!/bin/sh +# The yChat Project (2004) +# +# This uses "astyle" to format C++ code into a specific code style! + +for f in h cpp tmpl +do + for i in `find . -name "*.$f"` + do + echo $i + astyle --style=ansi -s2 $i + rm -f $i.orig + done +done |
