Release BACnet Protocol Stack 0.3.0

This commit is contained in:
skarg
2007-02-23 13:19:57 +00:00
parent 6c5b409dcf
commit 63e18a0f1f
315 changed files with 57198 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
#!/bin/sh
# indent uses a local indent.pro file if it exists
# echo "-kr -nut -nlp" > .indent.pro
directory=${1-`pwd`}
for filename in $( find $directory -name '*.c' )
do
echo Fixing DOS/Unix $filename
dos2unix $filename
echo Indenting $filename
indent -kr -nut -nlp $filename
done
for filename in $( find $directory -name '*.h' )
do
echo Fixing DOS/Unix $filename
dos2unix $filename
echo Indenting $filename
indent -kr -nut -nlp $filename
done
for filename in $( find $directory -name '*~' )
do
echo Removing backup $filename
rm $filename
done