xref: /freebsd/contrib/libcbor/clang-format.sh (revision 3c4ba5f55438f7afd4f4b0b56f88f2bb505fd6a6)
1#!/usr/bin/env bash
2
3# Usage: ./clang-format.sh <extra arguments>
4
5DIRS="src test examples"
6SOURCES=$(find ${DIRS} -name "*.c")
7SOURCES+=" $(find ${DIRS} -name "*.h")"
8SOURCES+=" $(find ${DIRS} -name "*.cpp")"
9
10clang-format $@ -style=file -i ${SOURCES}
11