localtime_r method

Pointer<tm> localtime_r(
  1. Pointer<time_t> arg0,
  2. Pointer<tm> arg1
)

Implementation

ffi.Pointer<tm> localtime_r(
  ffi.Pointer<time_t> arg0,
  ffi.Pointer<tm> arg1,
) {
  return _localtime_r(
    arg0,
    arg1,
  );
}