strftime_l method

int strftime_l(
  1. Pointer<Char> __s,
  2. int __maxsize,
  3. Pointer<Char> __format,
  4. Pointer<tm> __tp,
  5. locale_t __loc,
)

Implementation

int strftime_l(
  ffi.Pointer<ffi.Char> __s,
  int __maxsize,
  ffi.Pointer<ffi.Char> __format,
  ffi.Pointer<tm> __tp,
  locale_t __loc,
) {
  return _strftime_l(
    __s,
    __maxsize,
    __format,
    __tp,
    __loc,
  );
}