PyCodec_IncrementalDecoder method Null safety

Pointer<PyObject> PyCodec_IncrementalDecoder (
  1. Pointer<Int8> encoding,
  2. Pointer<Int8> errors
)

Implementation

ffi.Pointer<PyObject> PyCodec_IncrementalDecoder(
  ffi.Pointer<ffi.Int8> encoding,
  ffi.Pointer<ffi.Int8> errors,
) {
  return _PyCodec_IncrementalDecoder(
    encoding,
    errors,
  );
}