memccpy method

Pointer<Void> memccpy(
  1. Pointer<Void> __dest,
  2. Pointer<Void> __src,
  3. int __c,
  4. int __n
)

Implementation

ffi.Pointer<ffi.Void> memccpy(
  ffi.Pointer<ffi.Void> __dest,
  ffi.Pointer<ffi.Void> __src,
  int __c,
  int __n,
) {
  return _memccpy(
    __dest,
    __src,
    __c,
    __n,
  );
}