File: style_unify

package info (click to toggle)
libva-utils 2.22.0%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,152 kB
  • sloc: ansic: 49,282; cpp: 15,772; makefile: 369; sh: 27
file content (10 lines) | stat: -rwxr-xr-x 176 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
file=$(find . -path ./test/gtest/ -prune -name "*.[ch]" -o -name "*.cpp")
for i in $file
do 
    echo $i 
    astyle --style=linux -s4 -c -s -p -U -H -n $i
done