$FUNCNAME$
   FT_FGOTOP()
$CATEGORY$
   File I/O
$ONELINER$
   Go to the first record in a text file
$SYNTAX$

   FT_FGOTOP() -> NIL

$ARGUMENTS$

   None

$RETURNS$

   NIL

$DESCRIPTION$

   This function moves the record pointer to the first record
   in the currently selected text file workarea.

   A text file "record" is a line of text terminated by a CRLF pair.

$EXAMPLES$

   FT_FUSE( "text.c" )      // open text file

   DO WHILE !FT_FEOF()

      ? FT_FREADLN()        // read thru file

      FT_FSKIP()

   ENDDO

   FT_FGOTOP()              // go back to top

   ? FT_FRECNO()            // 1

$SEEALSO$
   FT_FSELECT(),FT_FUSE(),FT_FRECNO(),FT_FGOBOT()
$END$

