xenocara/lib/libva/style_unify

11 lines
149 B
Text
Raw Normal View History

2024-07-20 20:41:33 +00:00
#!/bin/bash
file=$(find . -name "*.[ch]" -o -name "*.cpp")
for i in $file
do
echo $i
astyle --style=linux -s4 -c -s -p -U -H -n $i
done