aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/clang-format/clang-format-all.sh
blob: c9caea0d613fade0de8b7da8fefc8a4b02fd38f4 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
set -ex
cd $(dirname $0)/../..
for dir in src test include
do
  find $dir -name '*.c' -or -name '*.cc' -or -name '*.h' | xargs clang-format -i
done