explicit_bzero method

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

Implementation

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