Operating systems, development tools, and professional services
for connected embedded systems
for connected embedded systems
![]() |
![]() |
![]() |
![]() |
fclose()
Close a stream
Synopsis:
#include <stdio.h> int fclose( FILE* fp );
Arguments:
- fp
- The stream you want to close.
Library:
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
Description:
The fclose() function closes the stream specified by fp. Any unwritten, buffered data is flushed before the file is closed. Any unread, buffered data is discarded.
If the associated buffer was automatically allocated, it's deallocated.
Returns:
0 for success, or EOF if an error occurred (errno is set).
Examples:
#include <stdio.h>
#include <stdlib.h>
int main( void )
{
FILE *fp;
fp = fopen( "stdio.h", "r" );
if( fp != NULL ) {
fclose( fp );
return EXIT_SUCCESS;
}
return EXIT_FAILURE;
}
Classification:
| Safety: | |
|---|---|
| Cancellation point | Yes |
| Interrupt handler | No |
| Signal handler | No |
| Thread | Yes |
See also:
errno, fcloseall(), fdopen(), fopen(), freopen()
![]() |
![]() |
![]() |
![]() |

![[Previous]](../prev.gif)
![[Contents]](../contents.gif)
![[Index]](../keyword_index.gif)
![[Next]](../next.gif)