blob: ba846ae83250bba34c78f31bce1c228ffb89f7c7 [file] [log] [blame]
#!/bin/bash
for dir in "include" "src"; do
pushd "${dir}" &>/dev/null
find . \
-type f \
\( -name "*.c" -o -name "*.h" \) \
-exec clang-format -i '{}' \;
popd &>/dev/null
done