strerror_l method

Pointer<Int8> strerror_l(
  1. int __errnum,
  2. Pointer<_locale_struct_> __l
)

Implementation

ffi.Pointer<ffi.Int8> strerror_l(
  int __errnum,
  ffi.Pointer<_locale_struct_> __l,
) {
  return _strerror_l(
    __errnum,
    __l,
  );
}