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(
    _Buffer,
    _SizeInBytes,
    _ErrorNumber,
  );
}