]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/fcloseall.3
getresuid.2, mremap.2, poll.2, remap_file_pages.2, setresuid.2, splice.2, sync_file_r...
[thirdparty/man-pages.git] / man3 / fcloseall.3
CommitLineData
c11b1abf 1.\" Copyright (c) 2006 by Michael Kerrisk <mtk.manpages@gmail.com>
fea681da 2.\"
c1cf42a5
MK
3.\" Permission is granted to make and distribute verbatim copies of this
4.\" manual provided the copyright notice and this permission notice are
5.\" preserved on all copies.
fea681da 6.\"
c1cf42a5
MK
7.\" Permission is granted to copy and distribute modified versions of this
8.\" manual under the conditions for verbatim copying, provided that the
9.\" entire resulting derived work is distributed under the terms of a
10.\" permission notice identical to this one.
fea681da 11.\"
c1cf42a5
MK
12.\" Since the Linux kernel and libraries are constantly changing, this
13.\" manual page may be incorrect or out-of-date. The author(s) assume no
14.\" responsibility for errors or omissions, or for damages resulting from
10d76543
MK
15.\" the use of the information contained herein. The author(s) may not
16.\" have taken the same level of care in the production of this manual,
17.\" which is licensed free of charge, as they might when working
18.\" professionally.
19.\"
20.\" Formatted or processed versions of this manual, if unaccompanied by
21.\" the source, must acknowledge the copyright and authors of this work.
22.\" License.
fea681da 23.\"
c1cf42a5 24.TH FCLOSEALL 3 2006-12-27 "GNU" "Linux Programmer's Manual"
fea681da
MK
25.SH NAME
26fcloseall \- close all open streams
27.SH SYNOPSIS
d5d687b1 28.nf
b80f966b 29.BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */"
fea681da
MK
30.B #include <stdio.h>
31.sp
32.B int fcloseall(void);
d5d687b1 33.fi
fea681da
MK
34.SH DESCRIPTION
35The
e511ffb6 36.BR fcloseall ()
c1cf42a5
MK
37function closes all of the calling process's open streams.
38Buffered output for each stream is written before it is closed
39(as for
40.BR fflush (3));
41buffered input is discarded.
42
43The standard streams,
44.IR stdin ,
45.IR stdout ,
46and
0daa9e92 47.I stderr
c1cf42a5 48are also closed.
fea681da 49.SH "RETURN VALUE"
c1cf42a5 50This function returns 0 if all files were successfully closed;
c13182ef
MK
51on error,
52.B EOF
c1cf42a5
MK
53is returned.
54.SH "CONFORMING TO"
55This function is a GNU extension.
fea681da
MK
56.SH "SEE ALSO"
57.BR close (2),
58.BR fclose (3),
59.BR fflush (3),
60.BR fopen (3),
0a90178c
MK
61.BR setbuf (3),
62.BR feature_test_macros (7)