| 604 | void xcw_native_free_string(char *value) { free(value); } |
| 605 | |
| 606 | void xcw_native_free_bytes(xcw_native_owned_bytes bytes) { free(bytes.data); } |
| 607 | |
| 608 | void xcw_native_release_shared_bytes(xcw_native_shared_bytes bytes) { |
| 609 | (void)bytes; |
no outgoing calls
no test coverage detected