#!/bin/bash set -xue find . -type f -name '*.c' -exec clang-format -i {} \; find . -type f -name '*.h' -exec clang-format -i {} \;