strerror method

Pointer<Int8> strerror(
  1. int _ErrorMessage
)

Implementation

ffi.Pointer<ffi.Int8> strerror(
  int _ErrorMessage,
) {
  return (_strerror_1 ??=
      _dylib.lookupFunction<_c_strerror, _dart_strerror>('strerror'))(
    _ErrorMessage,
  );
}