fflush: be more paranoid about libio.h change
[gnulib.git] / lib / fwritable.c
blob24a148aee2ad66396344a8069316fb8960a5617a
1 /* Retrieve information about a FILE stream.
2 Copyright (C) 2007-2018 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/>. */
17 #include <config.h>
19 /* Specification. */
20 #include "fwritable.h"
22 #include "stdio-impl.h"
24 #if defined EPLAN9 /* Plan9 */
25 # include <fcntl.h>
26 #endif
28 bool
29 fwritable (FILE *fp)
31 /* Most systems provide FILE as a struct and the necessary bitmask in
32 <stdio.h>, because they need it for implementing getc() and putc() as
33 fast macros. */
34 #if defined _IO_EOF_SEEN || defined _IO_ftrylockfile || __GNU_LIBRARY__ == 1
35 /* GNU libc, BeOS, Haiku, Linux libc5 */
36 return (fp->_flags & _IO_NO_WRITES) == 0;
37 #elif defined __sferror || defined __DragonFly__ || defined __ANDROID__
38 /* FreeBSD, NetBSD, OpenBSD, DragonFly, Mac OS X, Cygwin, Minix 3, Android */
39 return (fp_->_flags & (__SRW | __SWR)) != 0;
40 #elif defined __EMX__ /* emx+gcc */
41 return (fp->_flags & (_IORW | _IOWRT)) != 0;
42 #elif defined __minix /* Minix */
43 return (fp->_flags & _IOWRITE) != 0;
44 #elif defined _IOERR /* AIX, HP-UX, IRIX, OSF/1, Solaris, OpenServer, mingw, MSVC, NonStop Kernel, OpenVMS */
45 return (fp_->_flag & (_IORW | _IOWRT)) != 0;
46 #elif defined __QNX__ /* QNX */
47 return (fp->_Mode & 0x2 /* _MOPENW */) != 0;
48 #elif defined __MINT__ /* Atari FreeMiNT */
49 return fp->__mode.__write;
50 #elif defined EPLAN9 /* Plan9 */
51 int fd = fp->fd;
52 if (fd >= 0)
54 int flags = fcntl (fd, F_GETFL, NULL);
55 if (flags >= 0)
57 flags &= O_ACCMODE;
58 return (flags == O_WRONLY || flags == O_RDWR);
61 return 0;
62 #else
63 # error "Please port gnulib fwritable.c to your platform! Look at the definition of fopen, fdopen on your system, then report this to bug-gnulib."
64 #endif