1 /* Test of POSIX compatible fflush() function.
2 Copyright (C) 2008-2024 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
21 #include "binary-io.h"
25 main (int argc
, char **argv
)
29 /* Avoid the well-known bugs of fflush() on streams in O_TEXT mode
30 on native Windows platforms. */
31 set_binary_mode (0, O_BINARY
);
37 /* Check fflush after a backup ungetc() call. This is case 1a in
39 <https://lists.gnu.org/r/bug-gnulib/2008-03/msg00131.html>,
40 according to the Austin Group's resolution on 2009-01-08. */
48 /* Here the file-position indicator must be 2. */
50 c
= ungetc ('!', stdin
);
55 /* Here the file-position indicator must be 1. */
63 return test_exit_status
;
66 /* Check fflush after a non-backup ungetc() call. This is case 2a in
68 <https://lists.gnu.org/r/bug-gnulib/2008-03/msg00131.html>,
69 according to the Austin Group's resolution on 2009-01-08. */
70 /* Check that fflush after a non-backup ungetc() call discards the
71 ungetc buffer. This is mandated by POSIX
72 <https://pubs.opengroup.org/onlinepubs/9699919799/functions/fflush.html>:
73 "...any characters pushed back onto the stream by ungetc()
74 or ungetwc() that have not subsequently been read from the
75 stream shall be discarded..." */
83 /* Here the file-position indicator must be 2. */
85 c
= ungetc ('@', stdin
);
90 /* Here the file-position indicator must be 1. */
98 return test_exit_status
;