calloc method

Pointer<Void> calloc(
  1. int __nmemb,
  2. int __size
)

Implementation

ffi.Pointer<ffi.Void> calloc(
  int __nmemb,
  int __size,
) {
  return _calloc(
    __nmemb,
    __size,
  );
}