mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-02-05 15:42:32 +08:00
6 lines
191 B
Bash
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 |