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