PyTime_ObjectToTimespec method

int PyTime_ObjectToTimespec(
  1. Pointer<PyObject> obj,
  2. Pointer<time_t> sec,
  3. Pointer<Long> nsec,
  4. int arg3,
)

Implementation

int PyTime_ObjectToTimespec(
  ffi.Pointer<PyObject> obj,
  ffi.Pointer<time_t> sec,
  ffi.Pointer<ffi.Long> nsec,
  int arg3,
) {
  return _PyTime_ObjectToTimespec(
    obj,
    sec,
    nsec,
    arg3,
  );
}