소스 검색

wasm2c: add page (#2375)

Agniva De Sarker 6 년 전
부모
커밋
0233b61e11
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. 11 0
      pages/common/wasm2c.md

+ 11 - 0
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}}`