strerror_s method
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,
);
}