Flashnux

GNU/Linux man pages

Livre :
Expressions régulières,
Syntaxe et mise en oeuvre :

ISBN : 978-2-7460-9712-4
EAN : 9782746097124
(Editions ENI)

Unix

Unix v7

fclose(3s)


FCLOSE

FCLOSE

NAME
SYNOPSIS
DESCRIPTION
SEE ALSO
DIAGNOSTICS

NAME

fclose, fflush − close or flush a stream

SYNOPSIS

#include <stdio.h>

fclose(stream)
FILE
*stream;

fflush(stream)
FILE
*stream;

DESCRIPTION

Fclose causes any buffers for the named stream to be emptied, and the file to be closed. Buffers allocated by the standard input/output system are freed.

Fclose is performed automatically upon calling exit(2).

Fflush causes any buffered data for the named output stream to be written to that file. The stream remains open.

SEE ALSO

close(2), fopen(3), setbuf(3)

DIAGNOSTICS

These routines return EOF if stream is not associated with an output file, or if buffered data cannot be transferred to that file.



fclose(3s)