mirror of
https://github.com/fastfloat/fast_float.git
synced 2026-09-14 14:42:26 +08:00
11 lines
202 B
Batchfile
11 lines
202 B
Batchfile
@echo off
|
|
echo Formatting all C/C++ files recursively...
|
|
|
|
for /r %%i in (*.cpp *.h *.hpp *.cc *.c) do (
|
|
echo Formatting: %%i
|
|
clang-format -i -style=file "%%i"
|
|
)
|
|
|
|
echo Formatting complete!
|
|
pause
|