asctime_r method

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

Implementation

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