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,
  );
}