mirror of
https://github.com/Vita3K/Vita3K.git
synced 2025-04-02 11:02:10 -04:00
6 lines
158 B
Batchfile
6 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 ..
|