bzero method

void bzero(
  1. Pointer<Void> __s,
  2. int __n
)

Implementation

void bzero(
  ffi.Pointer<ffi.Void> __s,
  int __n,
) {
  return _bzero(
    __s,
    __n,
  );
}