explicit_bzero function

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

Set N bytes of S to 0. The compiler will not delete a call to this function, even if S is dead after the call.

Implementation

// ignore: non_constant_identifier_names
void explicit_bzero(
  ffi.Pointer<ffi.Void> __s,
  int __n,
) {
  _explicit_bzero ??= Libc().dylib.lookupFunction<
      ffi.Void Function(ffi.Pointer<ffi.Void>, ffi.Uint64),
      _dart_explicit_bzero>('explicit_bzero');
  return _explicit_bzero!(
    __s,
    __n,
  );
}