libva-utils/style_unify

11 lines
176 B
Bash
Executable File

#!/bin/bash
file=$(find . -path ./test/gtest/ -prune -name "*.[ch]" -o -name "*.cpp")
for i in $file
do
echo $i
astyle --style=linux -s4 -c -s -p -U -H -n $i
done