PyUnicode_DecodeUTF16 method Null safety
Implementation
ffi.Pointer<PyObject> PyUnicode_DecodeUTF16(
ffi.Pointer<ffi.Int8> string,
int length,
ffi.Pointer<ffi.Int8> errors,
ffi.Pointer<ffi.Int32> byteorder,
) {
return _PyUnicode_DecodeUTF16(
string,
length,
errors,
byteorder,
);
}