projects
/
platform
/
upstream
/
libva.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Array bound check
[platform/upstream/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