PyUnicode_Decode method Null safety

Pointer<PyObject> PyUnicode_Decode (
  1. Pointer<Int8> s,
  2. int size,
  3. Pointer<Int8> encoding,
  4. Pointer<Int8> errors
)

Implementation

ffi.Pointer<PyObject> PyUnicode_Decode(
  ffi.Pointer<ffi.Int8> s,
  int size,
  ffi.Pointer<ffi.Int8> encoding,
  ffi.Pointer<ffi.Int8> errors,
) {
  return _PyUnicode_Decode(
    s,
    size,
    encoding,
    errors,
  );
}