PyUnicode_DecodeLocaleAndSize method Null safety

Pointer<PyObject> PyUnicode_DecodeLocaleAndSize (
  1. Pointer<Int8> str,
  2. int len,
  3. Pointer<Int8> errors
)

Implementation

ffi.Pointer<PyObject> PyUnicode_DecodeLocaleAndSize(
  ffi.Pointer<ffi.Int8> str,
  int len,
  ffi.Pointer<ffi.Int8> errors,
) {
  return _PyUnicode_DecodeLocaleAndSize(
    str,
    len,
    errors,
  );
}