PyUnicode_DecodeASCII method Null safety

Pointer<PyObject> PyUnicode_DecodeASCII (
  1. Pointer<Int8> string,
  2. int length,
  3. Pointer<Int8> errors
)

Implementation

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