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

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