asctime_s method

int asctime_s(
  1. Pointer<Char> _Buffer,
  2. int _SizeInBytes,
  3. Pointer<tm> _Tm
)

Implementation

int asctime_s(
  ffi.Pointer<ffi.Char> _Buffer,
  int _SizeInBytes,
  ffi.Pointer<tm> _Tm,
) {
  return _asctime_s(
    _Buffer,
    _SizeInBytes,
    _Tm,
  );
}