Repositories
/
oonf.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add formating script
[oonf.git]
/
files
/
format_source.sh
1
#!/bin/sh
2
3
for f in `find ../src-*|grep [.][ch]$`
4
do
5
clang-format-6.0 -style=file -i $f
6
done