logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

fpurge — flush a stream

Description

The function fpurge() erases any input or output buffered in the given stream. For output streams this discards any unwritten output. For input streams this discards any input read from the underlying object but not yet obtained via getc(3); this includes any text pushed back via ungetc(3).

Errors

[EBADF] stream is not an open stream.

History

The fpurge() function first appeared in 4.4BSD-Lite. Debian November 4, 2015 fpurge(3bsd)

Library

Utility functions from BSD systems (libbsd, -lbsd)

Name

fpurge — flush a stream

Return Values

Upon successful completion 0 is returned. Otherwise, EOF is returned and the global variable errno is set to indicate the error.

See Also

fclose(3), fopen(3), setvbuf(3)

Synopsis

#include<stdio.h> (See libbsd(7) for include usage.) intfpurge(FILE*stream);

See Also