beetle-psx-libretro/parallel-psx/format_all.sh
2016-12-03 17:13:06 +01:00

8 lines
196 B
Bash
Executable File

#!/bin/bash
for file in vulkan/*.{cpp,hpp} vulkan/wsi/*.{cpp,hpp} *.cpp renderer/*.{cpp,hpp} atlas/*.{cpp,hpp}
do
echo "Formatting file: $file ..."
clang-format -style=file -i $file
done