2018-10-02 10:23:43 +01:00
|
|
|
# wasm2c
|
|
|
|
|
|
|
|
> Convert a file from the WebAssembly binary format to a C source file and header.
|
2021-11-06 20:52:43 +00:00
|
|
|
> More information: <https://github.com/WebAssembly/wabt>.
|
2018-10-02 10:23:43 +01:00
|
|
|
|
|
|
|
- Convert a file to a C source file and header and display it to the console:
|
|
|
|
|
|
|
|
`wasm2c {{file.wasm}}`
|
|
|
|
|
2021-01-31 17:05:18 +00:00
|
|
|
- Write the output to a given file (`file.h` gets additionally generated):
|
2018-10-02 10:23:43 +01:00
|
|
|
|
|
|
|
`wasm2c {{file.wasm}} -o {{file.c}}`
|