OSDN Git Service

Unify the coding style in the driver
[android-x86/hardware-intel-common-vaapi.git] / style_unify
1 #!/bin/sh
2
3 files=$(find src -name "*.[ch]")
4 for i in $files
5 do
6     echo $i
7     astyle --style=linux -cnpUH -s4 -M120 $i
8 done
9
10
11