PyUnicode_DecodeUTF16 method Null safety

Pointer<PyObject> PyUnicode_DecodeUTF16 (
  1. Pointer<Int8> string,
  2. int length,
  3. Pointer<Int8> errors,
  4. Pointer<Int32> byteorder
)

Implementation

ffi.Pointer<PyObject> PyUnicode_DecodeUTF16(
  ffi.Pointer<ffi.Int8> string,
  int length,
  ffi.Pointer<ffi.Int8> errors,
  ffi.Pointer<ffi.Int32> byteorder,
) {
  return _PyUnicode_DecodeUTF16(
    string,
    length,
    errors,
    byteorder,
  );
}