PyTime_ObjectToTimeval method Null safety

int PyTime_ObjectToTimeval (
  1. Pointer<PyObject> obj,
  2. Pointer<Int64> sec,
  3. Pointer<Int64> usec,
  4. int arg3
)

Implementation

int PyTime_ObjectToTimeval(
  ffi.Pointer<PyObject> obj,
  ffi.Pointer<ffi.Int64> sec,
  ffi.Pointer<ffi.Int64> usec,
  int arg3,
) {
  return _PyTime_ObjectToTimeval(
    obj,
    sec,
    usec,
    arg3,
  );
}