FT_FBOF()
Determine if attempt to skip past beginning of text file
──────────────────────────────────────────────────────────────────────────────

Syntax


FT_FBOF() -> lResult

Arguments


None

Returns


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

Description


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

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

Examples


FT_FUSE( "FTTEXT.C" )

FT_FGOTOP()

? FT_FBOF() // .F.

FT_FSKIP(-1)

? FT_FBOF() // .T.


Source: FTTEXT.C

Author: Brice de Ganahl and Steve Larsen