PyUnicode_DecodeASCII method Null safety
Implementation
ffi.Pointer<PyObject> PyUnicode_DecodeASCII(
ffi.Pointer<ffi.Int8> string,
int length,
ffi.Pointer<ffi.Int8> errors,
) {
return _PyUnicode_DecodeASCII(
string,
length,
errors,
);
}