Added convertfiles.cmd script

This commit is contained in:
Jon Thysell 2021-10-12 16:14:00 -07:00
parent fd9030c142
commit fe307eb9e6
1 changed files with 15 additions and 0 deletions

15
scripts/convertfiles.cmd Normal file
View File

@ -0,0 +1,15 @@
@echo off
setlocal
REM mac2unix, unix2dos at https://waterlan.home.xs4all.nl/dos2unix.html
pushd %~dp0\..
mac2unix src\*.c src\*.h *.md
unix2dos src\*.c src\*.h *.md
popd
endlocal
exit /b %ErrorLevel%