fixed line endings and SVN MIME and eol-style using fixup.sh script.

This commit is contained in:
skarg
2013-03-13 22:15:00 +00:00
parent 11897368d2
commit 2de46521b8
8 changed files with 892 additions and 892 deletions
+23 -23
View File
@@ -1,23 +1,23 @@
rem Indent the C and H files with specific coding standard
rem requires 'indent.exe' from MSYS (MinGW).
echo -kr -nut -nlp -ip4 -cli4 -bfda -nbc -nbbo -c0 -cd0 -cp0 -di0 -l79 -nhnl > ".indent.pro"
call :treeProcess
goto :eof
:treeProcess
rem perform the indent on all the files of this subdirectory:
for %%f in (*.c) do (
indent.exe "%%f" -o "%%f"
)
for %%f in (*.h) do (
indent.exe "%%f" -o "%%f"
)
rem loop over all directories and sub directories
for /D %%d in (*) do (
cd %%d
call :treeProcess
cd ..
)
exit /b
rem Indent the C and H files with specific coding standard
rem requires 'indent.exe' from MSYS (MinGW).
echo -kr -nut -nlp -ip4 -cli4 -bfda -nbc -nbbo -c0 -cd0 -cp0 -di0 -l79 -nhnl > ".indent.pro"
call :treeProcess
goto :eof
:treeProcess
rem perform the indent on all the files of this subdirectory:
for %%f in (*.c) do (
indent.exe "%%f" -o "%%f"
)
for %%f in (*.h) do (
indent.exe "%%f" -o "%%f"
)
rem loop over all directories and sub directories
for /D %%d in (*) do (
cd %%d
call :treeProcess
cd ..
)
exit /b