pwrite method

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

Implementation

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