FT_FEOF()
Determine when end of text file is encountered
──────────────────────────────────────────────────────────────────────────────

Syntax

FT_FEOF() -> lResult

Arguments

None

Returns

.T. if an attempt was made to skip past the last record of
the currently selected text file, otherwise .F.

Description

This function is similar to the CLIPPER Eof() function.

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

Examples

FT_FUSE( "FTTEXT.C" )

? FT_FEOF() // .F.
FT_FSKIP()
? FT_FEOF() // .T.

Source: FTTEXT.C

Author: Brice de Ganahl and Steve Larsen