From 0233b61e1153a40382bad842b0966d9926e9c862 Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Tue, 2 Oct 2018 14:53:43 +0530 Subject: [PATCH] wasm2c: add page (#2375) --- pages/common/wasm2c.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pages/common/wasm2c.md diff --git a/pages/common/wasm2c.md b/pages/common/wasm2c.md new file mode 100644 index 000000000..c40ba907e --- /dev/null +++ b/pages/common/wasm2c.md @@ -0,0 +1,11 @@ +# wasm2c + +> Convert a file from the WebAssembly binary format to a C source file and header. + +- Convert a file to a C source file and header and display it to the console: + +`wasm2c {{file.wasm}}` + +- Write the output to a given file (file.h gets additionally generated): + +`wasm2c {{file.wasm}} -o {{file.c}}`