NanoComp / libctl

Guile-based library implementing flexible control files for scientific simulations
GNU General Public License v2.0
18 stars 23 forks source link

run clang-format on .c and .h files #47

Closed stevengj closed 4 years ago

stevengj commented 4 years ago

Similar to Meep (https://github.com/NanoComp/meep#662), this PR runs clang-format on all the .c and .h files in order to adopt consistent code formatting.

There should be no non-cosmetic changes in this PR.

stevengj commented 4 years ago

Note: to run on all non-generated .c and .h files, I used:

git ls-tree -r master --name-only |egrep '(\.[ch]|\.h\.in)$' |xargs clang-format -i