1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
@echo off
set root=%~dp0
set source=%root%src
goto start
:format
set filelist=%1
for /r "%filelist%" %%f in (*) do (
if "%%~xf" equ ".h" (
call :format_file %%f
) else if "%%~xf" equ ".c" (
call :format_file %%f
)
)
goto end
:format_file
set f=%1
if "%~n1" neq "base64" (
if "%~n1" neq "json" (
if "%~n1" neq "uthash" (
echo 'format file "%f%"'
uncrustify -c %root%\.uncrustify.cfg -l C --replace --no-backup %f%
DEL %~dp1*.uncrustify >nul 2>nul
)
)
)
goto end
:start
call :format %source%
:end
|