mirror of
https://github.com/izzy2lost/Vita3K.git
synced 2026-03-26 18:15:44 -07:00
7 lines
158 B
Batchfile
7 lines
158 B
Batchfile
@echo off
|
|
cd vita3k
|
|
for /f %%f in ('dir *.cpp *.h /b/s') do clang-format -i %%f
|
|
cd ..\tools
|
|
for /f %%f in ('dir *.cpp *.h /b/s') do clang-format -i %%f
|
|
cd ..
|