Sign in
android
/
platform
/
hardware
/
intel
/
img
/
psb_video
/
054060f4c80f7401b49f88dd1f25bf644a16730b
/
.
/
style_unify
blob: 10bf2b9c9062f8950a27d9242d71271671a84e87 [
file
] [
log
] [
blame
]
#!/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
sed
-
i
's/[ \t]*$//'
$i
#remove trailing space
done