hdf5/bin/format_source
2020-09-04 16:36:52 -05:00

6 lines
191 B
Bash

#!/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