*-map tests: Fix compilation error.
[gnulib.git] / lib / fwritable.c
blobf28437f059acff28526def4b989f39d7dda20c61
1 /* Retrieve information about a FILE stream.
2 Copyright (C) 2007-2019 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 /* This file is not used on systems that have the __fwritable function,
29 namely glibc >= 2.2, Solaris >= 7, Android API >= 23, musl libc. */
31 bool
32 fwritable (FILE *fp)
34 /* Most systems provide FILE as a struct and the necessary bitmask in
35 <stdio.h>, because they need it for implementing getc() and putc() as
36 fast macros. */
37 #if defined _IO_EOF_SEEN || defined _IO_ftrylockfile || __GNU_LIBRARY__ == 1
38 /* GNU libc, BeOS, Haiku, Linux libc5 */
39 return (fp->_flags & _IO_NO_WRITES) == 0;
40 #elif defined __sferror || defined __DragonFly__ || defined __ANDROID__
41 /* FreeBSD, NetBSD, OpenBSD, DragonFly, Mac OS X, Cygwin, Minix 3, Android */
42 return (fp_->_flags & (__SRW | __SWR)) != 0;
43 #elif defined __EMX__ /* emx+gcc */
44 return (fp->_flags & (_IORW | _IOWRT)) != 0;
45 #elif defined __minix /* Minix */
46 return (fp->_flags & _IOWRITE) != 0;
47 #elif defined _IOERR /* AIX, HP-UX, IRIX, OSF/1, Solaris, OpenServer, mingw, MSVC, NonStop Kernel, OpenVMS */
48 return (fp_->_flag & (_IORW | _IOWRT)) != 0;
49 #elif defined __QNX__ /* QNX */
50 return (fp->_Mode & 0x2 /* _MOPENW */) != 0;
51 #elif defined __MINT__ /* Atari FreeMiNT */
52 return fp->__mode.__write;
53 #elif defined EPLAN9 /* Plan9 */
54 int fd = fp->fd;
55 if (fd >= 0)
57 int flags = fcntl (fd, F_GETFL, NULL);
58 if (flags >= 0)
60 flags &= O_ACCMODE;
61 return (flags == O_WRONLY || flags == O_RDWR);
64 return 0;
65 #else
66 # 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."
67 #endif