asctime_r method

Pointer<Char> asctime_r(
  1. Pointer<tm> arg0,
  2. Pointer<Char> arg1
)

Implementation

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