bcopy method

void bcopy(
  1. Pointer<Void> __src,
  2. Pointer<Void> __dest,
  3. int __n
)

Implementation

void bcopy(
  ffi.Pointer<ffi.Void> __src,
  ffi.Pointer<ffi.Void> __dest,
  int __n,
) {
  return _bcopy(
    __src,
    __dest,
    __n,
  );
}