PyUnicode_DecodeUTF7Stateful method Null safety

Pointer<PyObject> PyUnicode_DecodeUTF7Stateful (
  1. Pointer<Int8> string,
  2. int length,
  3. Pointer<Int8> errors,
  4. Pointer<Int64> consumed
)

Implementation

ffi.Pointer<PyObject> PyUnicode_DecodeUTF7Stateful(
  ffi.Pointer<ffi.Int8> string,
  int length,
  ffi.Pointer<ffi.Int8> errors,
  ffi.Pointer<ffi.Int64> consumed,
) {
  return _PyUnicode_DecodeUTF7Stateful(
    string,
    length,
    errors,
    consumed,
  );
}