Manpage of FCLOSE

Google
Web www.fiveanddime.net

FCLOSE

Section: NEWLIB (3)
Updated: 2005 Feb 23
Index Return to Main Contents
 

NAME

3.2 `fclose'--close a file

 

SYNOPSIS


     #include <stdio.h>
     int fclose(FILE *FP);
     int _fclose_r(struct _reent *REENT, FILE *FP);  

DESCRIPTION

If the file or stream identified by FP is open, `fclose' closes it, after first ensuring that any pending data is written (by calling `fflush(FP)').


   The alternate function `_fclose_r' is a reentrant version.  The extra argument REENT is a pointer to a reentrancy structure.

 

RETURNS

`fclose' returns `0' if successful (including when FP is `NULL' or not an open file); otherwise, it returns `EOF'.

 

PORTABILITY

`fclose' is required by ANSI C.


   Required OS subroutines: `close', `fstat', `isatty', `lseek', `read', `sbrk', `write'.

 

SEE ALSO

fclose is part of the libc library. The full documentation for libc is maintained as a Texinfo manual. If info and libc are properly installed at your site, the command
info libc

will give you access to the complete manual.


 

Index

NAME
SYNOPSIS
DESCRIPTION
RETURNS
PORTABILITY
SEE ALSO

This document was created by man2html, using the manual pages.
Time: 21:25:16 GMT, May 16, 2005



www.fiveanddime.net








Google
Web www.fiveanddime.net