swab method

void swab(
  1. Pointer<Char> _Buf1,
  2. Pointer<Char> _Buf2,
  3. int _SizeInBytes
)

Implementation

void swab(
  ffi.Pointer<ffi.Char> _Buf1,
  ffi.Pointer<ffi.Char> _Buf2,
  int _SizeInBytes,
) {
  return _swab1(
    _Buf1,
    _Buf2,
    _SizeInBytes,
  );
}