  fseek
  Builtin Function



      SSyynnooppssiiss
        Reposition a stream.

      SSyynnttaaxx
        fseek ( _F_I_L_E_N_A_M_E, _O_F_F_S_E_T )

        fseek ( _F_I_L_E_N_A_M_E, _O_F_F_S_E_T, _O_F_F_S_E_T )

      DDeessccrriippttiioonn
        fseek sets the current position in _F_I_L_E_N_A_M_E. a subsequent read
        will access data beginning at the new position. fseek is an
        interface to the C library function of the same name. _O_F_F_S_E_T is
        specified in bytes.


        _O_R_I_G_I_N

             "SEEK_SET"  beginning of file (default)



             "SEEK_CUR"  current position



             "SEEK_END"  end of file




     SSeeee AAllssoo
        FILES, fread, open, close





























