pwrite method

int pwrite(
  1. int __fd,
  2. Pointer<Void> __buf,
  3. int __n,
  4. int __offset,
)

Implementation

int pwrite(
  int __fd,
  ffi.Pointer<ffi.Void> __buf,
  int __n,
  int __offset,
) {
  return _pwrite(
    __fd,
    __buf,
    __n,
    __offset,
  );
}