Namespaces
Variants
Views
Actions

std::fclose

From cppreference.com
< cpp | io | c
Defined in header <cstdio>
int fclose( FILE *stream );

Closes the given file stream. Any unwritten buffered data are flushed to the OS. Any unread buffered data are discarded.

Whether or not the operation succeeds, the stream is no longer associated with a file, and the buffer allocated by std::setbuf or std::setvbuf, if any, is also disassociated and deallocated if automatic allocation was used.

Contents

[edit] Parameters

stream - the file stream to close

[edit] Return value

0 on success, EOF otherwise

[edit] Example

[edit] See also

opens a file
(function) [edit]
open an existing stream with a different name
(function) [edit]
flushes the put area buffer and closes the associated file
(public member function of std::basic_filebuf) [edit]
C documentation for fclose