#!/bin/sh

find . -not \( -path ./test/gen -prune \) -type f -regex '.*\.\(cpp\|hpp\|cc\|cxx\|h\|hxx\|cs\|java\)' -exec clang-format-14 -style=file -i {} \;
