diff options
Diffstat (limited to 'test/external/metalang99/scripts/fmt.sh')
| -rwxr-xr-x | test/external/metalang99/scripts/fmt.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/external/metalang99/scripts/fmt.sh b/test/external/metalang99/scripts/fmt.sh new file mode 100755 index 0000000..5f550b6 --- /dev/null +++ b/test/external/metalang99/scripts/fmt.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +find include tests examples bench \ + \( -path examples/build -o -path tests/build \) -prune -false -o \ + \( -iname "*.h" \) -or \( -iname "*.c" \) | xargs clang-format -i |