strerror_s method

int strerror_s(
  1. Pointer<Int8> _Buffer,
  2. int _SizeInBytes,
  3. int _ErrorNumber
)

Implementation

int strerror_s(
  ffi.Pointer<ffi.Int8> _Buffer,
  int _SizeInBytes,
  int _ErrorNumber,
) {
  return (_strerror_s_1 ??=
      _dylib.lookupFunction<_c_strerror_s, _dart_strerror_s>('strerror_s'))(
    _Buffer,
    _SizeInBytes,
    _ErrorNumber,
  );
}