calloc method

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

Implementation

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