OSDN Git Service

(split) LDP: Update original to LDP v3.38.
[linuxjm/LDP_man-pages.git] / original / man3 / fcloseall.3
1 .\" Copyright (c) 2006 by Michael Kerrisk <mtk.manpages@gmail.com>
2 .\"
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.
6 .\"
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.
11 .\"
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
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.
23 .\"
24 .TH FCLOSEALL 3  2006-12-27 "GNU" "Linux Programmer's Manual"
25 .SH NAME
26 fcloseall \- close all open streams
27 .SH SYNOPSIS
28 .nf
29 .BR "#define _GNU_SOURCE" "         /* See feature_test_macros(7) */"
30 .B #include <stdio.h>
31 .sp
32 .B int fcloseall(void);
33 .fi
34 .SH DESCRIPTION
35 The
36 .BR fcloseall ()
37 function closes all of the calling process's open streams.
38 Buffered output for each stream is written before it is closed
39 (as for
40 .BR fflush (3));
41 buffered input is discarded.
42
43 The standard streams,
44 .IR stdin ,
45 .IR stdout ,
46 and
47 .I stderr
48 are also closed.
49 .SH "RETURN VALUE"
50 This function returns 0 if all files were successfully closed;
51 on error,
52 .B EOF
53 is returned.
54 .SH "CONFORMING TO"
55 This function is a GNU extension.
56 .SH "SEE ALSO"
57 .BR close (2),
58 .BR fclose (3),
59 .BR fflush (3),
60 .BR fopen (3),
61 .BR setbuf (3)