std::feof

From Cppreference

< cpp | io | c
Jump to: navigation, search
Defined in header <cstdio>

int feof( FILE *stream );

Checks if the end of the given file stream has been reached.

Contents

[edit] Parameters

stream - the file stream to check

[edit] Return value

nonzero value if the end of the stream has been reached, otherwise 0

[edit] Example

[edit] See also

clearerr
clears errors
(function)
perror
displays a character string corresponding of the current error to stderr
(function)
ferror
checks for a file error
(function)