#[unsafe(no_mangle)]pub unsafe extern "C" fn patch_seq_cstring_to_string(
stack: Stack,
cstr: *const u8,
) -> StackExpand description
Convert a null-terminated C string to a Seq String and push onto stack.
The C string is NOT freed by this function.
Stack effect: ( – String )
§Safety
cstr must be a valid null-terminated C string.