blob: ba846ae83250bba34c78f31bce1c228ffb89f7c7 [file] [log] [blame]
James Kuszmaul64391362021-01-17 11:32:00 -08001#!/bin/bash
2for dir in "include" "src"; do
3 pushd "${dir}" &>/dev/null
4 find . \
5 -type f \
6 \( -name "*.c" -o -name "*.h" \) \
7 -exec clang-format -i '{}' \;
8 popd &>/dev/null
9done