summaryrefslogtreecommitdiff
path: root/tools/format-all
blob: 0493a9815004768d2ecf982c16be30bab704af92 (plain)
1
2
3
4
5
#!/usr/bin/env bash

find . -type f -name "*.c" -print0 | xargs -0 -I {} clang-format -i {}
find . -type f -name "*.h" -print0 | xargs -0 -I {} clang-format -i {}