asctime_r method

Pointer<Int8> asctime_r(
  1. Pointer<tm> __tp,
  2. Pointer<Int8> __buf
)

Implementation

ffi.Pointer<ffi.Int8> asctime_r(
  ffi.Pointer<tm> __tp,
  ffi.Pointer<ffi.Int8> __buf,
) {
  return _asctime_r(
    __tp,
    __buf,
  );
}