PyUnicode_AsUCS4 method Null safety

Pointer<Uint32> PyUnicode_AsUCS4 (
  1. Pointer<PyObject> unicode,
  2. Pointer<Uint32> buffer,
  3. int buflen,
  4. int copy_null
)

Implementation

ffi.Pointer<ffi.Uint32> PyUnicode_AsUCS4(
  ffi.Pointer<PyObject> unicode,
  ffi.Pointer<ffi.Uint32> buffer,
  int buflen,
  int copy_null,
) {
  return _PyUnicode_AsUCS4(
    unicode,
    buffer,
    buflen,
    copy_null,
  );
}