Brass Core Plugins

feof

Returns true if the file pointer is at the end of the file.

Syntax

feof(handle)

Example

Reading all data from a file in a loop.

f = fopen("file.ext")

#while !feof(f)
    .echoln fread(f)
#loop