Hi, all I wanted to call a C function as below in wasm ` void hello(char *name) { printf("Hello, %s\n", name); } ` My question is how can I invoke the hello function with wasm-c-api? I would appreciate it if you can answer my question.