PyBytes_DecodeEscape_1 method Null safety

Pointer<PyObject> PyBytes_DecodeEscape_1 (
  1. Pointer<Int8> arg0,
  2. int arg1,
  3. Pointer<Int8> arg2,
  4. int arg3,
  5. Pointer<Int8> arg4,
  6. Pointer<Pointer<Int8>> arg5
)

Implementation

ffi.Pointer<PyObject> PyBytes_DecodeEscape_1(
  ffi.Pointer<ffi.Int8> arg0,
  int arg1,
  ffi.Pointer<ffi.Int8> arg2,
  int arg3,
  ffi.Pointer<ffi.Int8> arg4,
  ffi.Pointer<ffi.Pointer<ffi.Int8>> arg5,
) {
  return _PyBytes_DecodeEscape_1(
    arg0,
    arg1,
    arg2,
    arg3,
    arg4,
    arg5,
  );
}