strerror function

String strerror(
  1. int errno
)

Implementation

String strerror(int errno) {
  final error = _strerror(errno);
  if (error.address == 0) {
    return 'Unknown error';
  }
  return error.toDartString();
}