OpenRetroPad/code-format.sh

5 lines
150 B
Bash
Raw Normal View History

2020-12-04 20:34:40 -05:00
#!/bin/sh
find src -type f \( -iname '*.h' -o -iname '*.c' -o -iname '*.cpp' \) -print0 | xargs -0 clang-format -style=file -i -fallback-style=none