blob: 6a31ecbd0382f89194515351bc18302278612bf5 [file] [log] [blame]
James Kuszmaul4a42b182021-01-17 11:32:46 -08001#!/bin/bash
2for dir in "include" "src" "tools"; 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