]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man3/fpurge.3
Various pages: Standardize wording around setting of 'errno' on error
[thirdparty/man-pages.git] / man3 / fpurge.3
1 .\" Copyright (C) 2001 Andries Brouwer <aeb@cwi.nl>.
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date. The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein. The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .TH FPURGE 3 2017-09-15 "" "Linux Programmer's Manual"
26 .SH NAME
27 fpurge, __fpurge \- purge a stream
28 .SH SYNOPSIS
29 .nf
30 /* unsupported */
31 .B #include <stdio.h>
32 .PP
33 .BI "int fpurge(FILE *" stream );
34 .PP
35 /* supported */
36 .B #include <stdio.h>
37 .B #include <stdio_ext.h>
38 .PP
39 .BI "void __fpurge(FILE *" stream );
40 .fi
41 .SH DESCRIPTION
42 The function
43 .BR fpurge ()
44 clears the buffers of the given stream.
45 For output streams this discards any unwritten output.
46 For input streams this discards any input read from the underlying object
47 but not yet obtained via
48 .BR getc (3);
49 this includes any text pushed back via
50 .BR ungetc (3).
51 See also
52 .BR fflush (3).
53 .PP
54 The function
55 .BR __fpurge ()
56 does precisely the same, but without returning a value.
57 .SH RETURN VALUE
58 Upon successful completion
59 .BR fpurge ()
60 returns 0.
61 On error, it returns \-1 and sets
62 .I errno
63 to indicate the error.
64 .SH ERRORS
65 .TP
66 .B EBADF
67 .I stream
68 is not an open stream.
69 .SH ATTRIBUTES
70 For an explanation of the terms used in this section, see
71 .BR attributes (7).
72 .ad l
73 .nh
74 .TS
75 allbox;
76 lbx lb lb
77 l l l.
78 Interface Attribute Value
79 T{
80 .BR __fpurge ()
81 T} Thread safety MT-Safe race:stream
82 .TE
83 .hy
84 .ad
85 .sp 1
86 .SH CONFORMING TO
87 These functions are nonstandard and not portable.
88 The function
89 .BR fpurge ()
90 was introduced in 4.4BSD and is not available under Linux.
91 The function
92 .BR __fpurge ()
93 was introduced in Solaris, and is present in glibc 2.1.95 and later.
94 .SH NOTES
95 Usually it is a mistake to want to discard input buffers.
96 .SH SEE ALSO
97 .\" .BR fclean (3),
98 .BR fflush (3),
99 .BR setbuf (3),
100 .BR stdio_ext (3)