GETLINE

NAME

getfile - Get a line

SYNOPSIS

getline(file_descriptor)

getline(file:file_descriptor)

DESCRIPTION

This function is used to read a line.

It return a line or null if we are at the end of the file

EXAMPLES

ct = open(read:true,file:"/html/post1.html");
        ct;
        c = getline(ct);
        while c do
            "c="; c; " ";
            c = getline(ct);
        endw

SEE ALSO

Files

AUTHOR

Written by Pierre Laplante, <laplante@sednove.com>

MODIFICATIONS

1.0 2015-12-28 21:24:14 laplante@sednove.com