fseeko method

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

Implementation

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