1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 16:42:10 +02:00
tldr/pages/common/wasm2c.md
2018-10-02 10:23:43 +01:00

11 lines
308 B
Markdown

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