bcopy function

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,
) {
  _bcopy ??= Libc().dylib.lookupFunction<
      ffi.Void Function(
          ffi.Pointer<ffi.Void>, ffi.Pointer<ffi.Void>, ffi.Uint64),
      _dart_bcopy>('bcopy');
  return _bcopy!(
    __src,
    __dest,
    __n,
  );
}