Manpages - fgetln.3bsd

(See

for include usage.)

The

function returns a pointer to the next line from the stream referenced by

This line is

a C string as it does not end with a terminating

character. The length of the line, including the final newline, is stored in the memory location to which

points and is guaranteed to be greater than 0 upon successful completion. (Note, however, that if the line is the last in a file that does not end in a newline, the returned text will not contain a newline.)

Upon successful completion a pointer is returned; this pointer becomes invalid after the next

operation on

(whether successful or not) or as soon as the stream is closed. Otherwise,

is returned. The

function does not distinguish between end-of-file and error; the routines

and

must be used to determine which occurred. If an error occurs, the global variable

is set to indicate the error. The end-of-file condition is remembered, even on a terminal, and all subsequent attempts to read will return

until the condition is cleared with

The text to which the returned pointer points may be modified, provided that no changes are made beyond the returned size. These changes are lost as soon as the pointer becomes invalid.

The argument

is not a stream open for reading.

The

function may also fail and set

for any of the errors specified for the routines

or

The

function first appeared in

Author: dt

Created: 2022-02-20 Sun 15:46