#!/bin/bash

find . -not \( -path ./.git -prune \) -not \( -path ./doc -prune \) -type f -name *.[ch]pp -exec clang-format-16 -i -style=Mozilla --verbose {} +

