fseeko method

int fseeko(
  1. Pointer<FILE> __stream,
  2. int __offset,
  3. int __whence
)

Implementation

int fseeko(ffi.Pointer<FILE> __stream, int __offset, int __whence) {
  return _fseeko(__stream, __offset, __whence);
}