PyTime_AsTimevalTime_t method

int PyTime_AsTimevalTime_t(
  1. int t,
  2. Pointer<time_t> secs,
  3. Pointer<Int> us,
  4. int round,
)

Implementation

int PyTime_AsTimevalTime_t(
  int t,
  ffi.Pointer<time_t> secs,
  ffi.Pointer<ffi.Int> us,
  int round,
) {
  return _PyTime_AsTimevalTime_t(
    t,
    secs,
    us,
    round,
  );
}