OSDN Git Service

update NEWS for libva 2.4.0
[android-x86/hardware-intel-common-libva.git] / style_unify
1 #!/bin/bash
2 file=$(find . -name "*.[ch]" -o -name "*.cpp")
3 for i in $file
4 do 
5     echo $i 
6     astyle --style=linux -s4 -c -s -p -U -H -n $i
7 done
8
9
10