hdf5/bin/format_source

6 lines
191 B
Plaintext
Raw Normal View History

#!/bin/bash
find . -type d \( -path ./config \) -prune \
-o -iname *.h -o -iname *.c -o -iname *.cpp -o -iname *.hpp \
| xargs clang-format -style=file -i -fallback-style=none
exit 0