Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
libmctp
/
663ec39ea107c2a736f9bcb20cbfdfa623092ab1
/
.
/
format-code.sh
blob: d34554d676bf908a81004bdc7c558f3bf9d5ca20 [
file
] [
log
] [
blame
]
#!/bin/bash
:
$
{
CLANG_FORMAT
:=
clang
-
format
}
FILES
=
$
(
comm
-
3
<(
sort
.
clang
-
ignore
)
<(
git ls
-
files
|
grep
'.*\.[ch]$'
|
sort
))
if
[
-
n
"$FILES"
]
then
$CLANG_FORMAT
-
style
=
file
-
i $FILES
fi