fclose() - chiude uno stream
#include int fclose(FILE *stream);
La funzione fclose() chiude il file associato a stream durante l'apertura con fopen().
Se stream e' stato usato in output, i dati bufferizzati sono scritti con fflush() prima della chiusura del file.
La funzione fclose() ritorna 0 in caso di successo e EOF in caso di fallimento.
ANSI C3.159-1989 ('ANSI C')
fopen() fdopen() freopen() tmpfile() setbuf() setbuffer() setlinebuf() setvbuf() clearerr(), feof(), ferror(), fileno() fseek(), rewind(), ftell(), fgetpos(), fsetpos() fflush() fgetc(), getc(), getchar(), ungetc() fputc(), putc(), putchar() fgets(), gets() fputs(), puts() scanf(), fscanf(), sscanf(), vscanf(), vfscanf(), vsscanf() printf(), fprintf(), sprintf(), snprintf(), vprintf(), vfprintf(), vsprintf(), vsnprintf() fread() fwrite()
Indice linguaggio C |
Indice librerie C |
Umberto Zappi Home Page |
Indice funzioni C |