bcopy method

void bcopy(
  1. Pointer<Void> src,
  2. Pointer<Void> dst,
  3. int n
)

Implementation

void bcopy(
  ffi.Pointer<ffi.Void> src,
  ffi.Pointer<ffi.Void> dst,
  int n,
) {
  return _bcopy(
    src,
    dst,
    n,
  );
}