1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 15:15:23 +02:00

wasm2c: add page (#2375)

This commit is contained in:
Agniva De Sarker 2018-10-02 14:53:43 +05:30 committed by Owen Voke
parent dc5d1d8b44
commit 0233b61e11

11
pages/common/wasm2c.md Normal file
View file

@ -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}}`