bcopy method

void bcopy(
  1. Pointer<Void> arg0,
  2. Pointer<Void> arg1,
  3. int arg2
)
inherited

Implementation

void bcopy(
  ffi.Pointer<ffi.Void> arg0,
  ffi.Pointer<ffi.Void> arg1,
  int arg2,
) {
  return _bcopy(
    arg0,
    arg1,
    arg2,
  );
}