PyUnicode_DecodeUTF8Stateful method Null safety
Implementation
ffi.Pointer<PyObject> PyUnicode_DecodeUTF8Stateful(
ffi.Pointer<ffi.Int8> string,
int length,
ffi.Pointer<ffi.Int8> errors,
ffi.Pointer<ffi.Int64> consumed,
) {
return _PyUnicode_DecodeUTF8Stateful(
string,
length,
errors,
consumed,
);
}