mirror of
https://github.com/libretro/RetroArch.git
synced 2024-12-02 21:37:14 +00:00
8 lines
250 B
Bash
Executable File
8 lines
250 B
Bash
Executable File
#!/bin/bash
|
|
uncrustify -c uncrustify.cfg *.c *.h
|
|
for f in *.uncrustify; do
|
|
source_file=$(basename "$f" .uncrustify);
|
|
cmp "$source_file" "$f" || (read -p "Style violations in '$source_file'" && vimdiff "$source_file" "$f");
|
|
done;
|
|
rm -f *.uncrustify
|