arc4random_buf method

void arc4random_buf(
  1. Pointer<Void> __buf,
  2. int __nbytes
)

Implementation

void arc4random_buf(
  ffi.Pointer<ffi.Void> __buf,
  int __nbytes,
) {
  return _arc4random_buf(
    __buf,
    __nbytes,
  );
}