reallocarray method

Pointer<Void> reallocarray(
  1. Pointer<Void> __ptr,
  2. int __nmemb,
  3. int __size
)

Implementation

ffi.Pointer<ffi.Void> reallocarray(
  ffi.Pointer<ffi.Void> __ptr,
  int __nmemb,
  int __size,
) {
  return _reallocarray(
    __ptr,
    __nmemb,
    __size,
  );
}