1 .\" Copyright (C) 2001 Andries Brouwer <aeb@cwi.nl>.
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.
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.
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
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
25 .TH FPURGE 3 2021-03-22 "" "Linux Programmer's Manual"
27 fpurge, __fpurge \- purge a stream
33 .BI "int fpurge(FILE *" stream );
37 .B #include <stdio_ext.h>
39 .BI "void __fpurge(FILE *" stream );
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
49 this includes any text pushed back via
56 does precisely the same, but without returning a value.
58 Upon successful completion
61 On error, it returns \-1 and sets
63 to indicate the error.
68 is not an open stream.
70 For an explanation of the terms used in this section, see
78 Interface Attribute Value
81 T} Thread safety MT-Safe race:stream
87 These functions are nonstandard and not portable.
90 was introduced in 4.4BSD and is not available under Linux.
93 was introduced in Solaris, and is present in glibc 2.1.95 and later.
95 Usually it is a mistake to want to discard input buffers.