#!/bin/bash
shopt -s globstar
clang-format --dry-run -Werror **/*.c **/*.h
returncode=$?
shopt -u globstar
exit $returncode

