fpurge (3) Linux Manual Page
NAME fpurge, __fpurge – purge a stream SYNOPSIS /* unsupported */ #include <stdio.h> int fpurge(FILE *stream); /* supported */ #include <stdio.h> #include <stdio_ext.h> void __fpurge(FILE *stream); DESCRIPTION The function fpurge() clears the buffers of the given stream. For output streams this discards any unwritten output. For input streams this discards any input read from the…
