pread method

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

Implementation

int pread(
  int __fd,
  ffi.Pointer<ffi.Void> __buf,
  int __nbytes,
  int __offset,
) {
  return _pread(
    __fd,
    __buf,
    __nbytes,
    __offset,
  );
}