~thopiekar/emgd/libva-1.0.14-github_community

1
2
3
4
5
6
7
8
9
10
#!/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