Codebase list intel-vaapi-driver-shaders / debian/2.4.0-1 style_unify
debian/2.4.0-1

Tree @debian/2.4.0-1 (Download .tar.gz)

style_unify @debian/2.4.0-1raw · history · blame

1
2
3
4
5
6
7
8
#!/bin/sh

files=$(find src -name "*.[ch]")
for i in $files
do
    echo $i
    astyle --style=linux -cnpUH -s4 -M120 $i
done