ftell method

int ftell(
  1. Pointer<FILE> __stream
)

Implementation

int ftell(
  ffi.Pointer<FILE> __stream,
) {
  return _ftell(
    __stream,
  );
}