sodium_munlock method

int sodium_munlock(
  1. Pointer<Void> addr,
  2. int len
)

Implementation

int sodium_munlock(
  ffi.Pointer<ffi.Void> addr,
  int len,
) {
  return _sodium_munlock(
    addr,
    len,
  );
}