mirror of
https://github.com/pret/pokediamond.git
synced 2026-03-21 17:54:29 -05:00
5 lines
214 B
Bash
5 lines
214 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
find arm9 include -not \( -path arm9/lib -prune \) -not \( -path include/nitro -prune \) \( -name "*.c" -or -name "*.cpp" -or -name "*.h" -or -name "*.hpp" \) -exec clang-format -i --verbose {} +
|