PyStructSequence_InitType method Null safety

void PyStructSequence_InitType (
  1. Pointer<_typeobject> type,
  2. Pointer<PyStructSequence_Desc> desc
)

Implementation

void PyStructSequence_InitType(
  ffi.Pointer<_typeobject> type,
  ffi.Pointer<PyStructSequence_Desc> desc,
) {
  return _PyStructSequence_InitType(
    type,
    desc,
  );
}