| 105 | #define wasm_name_delete wasm_byte_vec_delete |
| 106 | |
| 107 | static inline void wasm_name_new_from_string( |
| 108 | own wasm_name_t* out, const char* s |
| 109 | ) { |
| 110 | wasm_name_new(out, strlen(s), s); |
| 111 | } |
| 112 | |
| 113 | static inline void wasm_name_new_from_string_nt( |
| 114 | own wasm_name_t* out, const char* s |
nothing calls this directly
no outgoing calls
no test coverage detected