Warning, /sdk/kde-dev-scripts/astyle-kdelibs.bat is written in an unsupported language. File is not indexed.

0001 @echo off 
0002 :: apply kdelibs coding style to all c, cpp and header files in and below the current directory 
0003 ::
0004 :: the coding style is defined in http://techbase.kde.org/Policies/Kdelibs_Coding_Style 
0005 ::
0006 :: requirements: installed astyle 
0007 
0008 FOR /R %%G in (*.c) DO astyle --indent=spaces=4 --brackets=linux --indent-labels --pad=oper --unpad=paren  --one-line=keep-statements --convert-tabs --indent-preprocessor "%%G" 
0009 FOR /R %%G in (*.cpp) DO astyle --indent=spaces=4 --brackets=linux --indent-labels --pad=oper --unpad=paren  --one-line=keep-statements --convert-tabs --indent-preprocessor "%%G" 
0010 FOR /R %%G in (*.h) DO astyle --indent=spaces=4 --brackets=linux --indent-labels --pad=oper --unpad=paren  --one-line=keep-statements --convert-tabs --indent-preprocessor "%%G"