memmove method

Pointer<Void> memmove(
  1. Pointer<Void> __dst,
  2. Pointer<Void> __src,
  3. int __len
)

Implementation

ffi.Pointer<ffi.Void> memmove(
  ffi.Pointer<ffi.Void> __dst,
  ffi.Pointer<ffi.Void> __src,
  int __len,
) {
  return _memmove(
    __dst,
    __src,
    __len,
  );
}