mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-24 15:25:00 +08:00
6 lines
191 B
Plaintext
6 lines
191 B
Plaintext
|
#!/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
|