Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/c-api/clangformat.sh
2455 views
1
#!/usr/bin/env bash
2
3
set -eu
4
5
cd $(dirname $0)/../..
6
7
git ls-files '*.h' '*.c' '*.cpp' '*.hh' '*.cc' | \
8
grep -v wasmtime-platform.h | \
9
grep -v wasm.h | \
10
xargs clang-format-18 -i
11
12