2013-07-09 10:16:21 -07:00
|
|
|
/* Binary mode I/O.
|
Update from gnulib
This incorporates:
2019-12-23 mktime, nstrftime: tweak division performance
2019-12-22 count-leading-zeros: assume 'long long'
2019-12-22 count-one-bits: assume 'long long'
2019-12-22 count-trailing-zeros: assume 'long long'
2019-12-12 inttypes-incomplete: assume 'long long'
2019-12-22 malloca: assume 'long long'
2019-12-22 stdint: assume 'long long'
2019-12-22 strtoll, strtoimax, strtoumax: assume 'long long'
2019-12-22 prefer lib_SOURCES to unconditional AC_LIBOBJ
2019-12-19 nstrftime: avoid a shadowing warning
2019-12-18 improve port of AC_C_RESTRICT to Oracle C++
2019-12-12 stdalign: port to xlclang 16.01
2019-12-11 stddef, unistd: fix compilation error in C++ mode on MSVC
2019-12-08 fix compilation errors in C++ mode on Haiku
2019-12-08 fix compilation errors in 32-bit C++ mode on HP-UX 11/ia64
2019-12-08 fix compilation error in C++ mode on OpenBSD
* build-aux/config.guess, doc/misc/texinfo.tex:
* lib/count-leading-zeros.h, lib/count-one-bits.h:
* lib/count-trailing-zeros.h, lib/inttypes.in.h, lib/malloca.h:
* lib/mktime.c, lib/nstrftime.c, lib/signal.in.h, lib/stdalign.in.h:
* lib/stddef.in.h, lib/stdint.in.h, lib/stdio.in.h, lib/stdlib.in.h:
* lib/strtoimax.c, lib/unistd.in.h, m4/gnulib-common.m4:
* m4/inttypes.m4, m4/largefile.m4, m4/malloca.m4, m4/strtoimax.m4:
* m4/strtoll.m4:
Copy from Gnulib. Also, change copyright notices in some other
Gnulib-copied files to exactly match Gnulib, as Gnulib updated
them in a trivially different way.
* lib/gnulib.mk.in, m4/gnulib-comp.m4: Regenerate.
2020-01-01 03:11:22 +00:00
|
|
|
Copyright (C) 2001, 2003, 2005, 2008-2020 Free Software Foundation, Inc.
|
2013-07-09 10:16:21 -07:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2017-09-13 02:07:03 -07:00
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>. */
|
2013-07-09 10:16:21 -07:00
|
|
|
|
|
|
|
#ifndef _BINARY_H
|
|
|
|
#define _BINARY_H
|
|
|
|
|
|
|
|
/* For systems that distinguish between text and binary I/O.
|
|
|
|
O_BINARY is guaranteed by the gnulib <fcntl.h>. */
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
/* The MSVC7 <stdio.h> doesn't like to be included after '#define fileno ...',
|
|
|
|
so we include it here first. */
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2013-09-19 14:40:08 -07:00
|
|
|
#ifndef _GL_INLINE_HEADER_BEGIN
|
|
|
|
#error "Please include config.h first."
|
|
|
|
#endif
|
2013-07-09 10:16:21 -07:00
|
|
|
_GL_INLINE_HEADER_BEGIN
|
|
|
|
#ifndef BINARY_IO_INLINE
|
|
|
|
# define BINARY_IO_INLINE _GL_INLINE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if O_BINARY
|
|
|
|
# if defined __EMX__ || defined __DJGPP__ || defined __CYGWIN__
|
|
|
|
# include <io.h> /* declares setmode() */
|
2017-02-23 09:14:06 -08:00
|
|
|
# define __gl_setmode setmode
|
2013-07-09 10:16:21 -07:00
|
|
|
# else
|
2017-02-23 09:14:06 -08:00
|
|
|
# define __gl_setmode _setmode
|
2013-07-09 10:16:21 -07:00
|
|
|
# undef fileno
|
|
|
|
# define fileno _fileno
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
/* On reasonable systems, binary I/O is the only choice. */
|
|
|
|
/* Use a function rather than a macro, to avoid gcc warnings
|
|
|
|
"warning: statement with no effect". */
|
|
|
|
BINARY_IO_INLINE int
|
2018-03-07 17:55:44 -08:00
|
|
|
__gl_setmode (int fd _GL_UNUSED, int mode _GL_UNUSED)
|
2013-07-09 10:16:21 -07:00
|
|
|
{
|
|
|
|
return O_BINARY;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-02-23 09:14:06 -08:00
|
|
|
/* Set FD's mode to MODE, which should be either O_TEXT or O_BINARY.
|
|
|
|
Return the old mode if successful, -1 (setting errno) on failure.
|
|
|
|
Ordinarily this function would be called 'setmode', since that is
|
2020-08-12 11:37:52 -07:00
|
|
|
its old name on MS-Windows, but it is called 'set_binary_mode' here
|
2017-02-23 09:14:06 -08:00
|
|
|
to avoid colliding with a BSD function of another name. */
|
|
|
|
|
2019-06-06 08:56:03 -07:00
|
|
|
#if defined __DJGPP__ || defined __EMX__
|
|
|
|
extern int set_binary_mode (int fd, int mode);
|
|
|
|
#else
|
2017-02-23 09:14:06 -08:00
|
|
|
BINARY_IO_INLINE int
|
|
|
|
set_binary_mode (int fd, int mode)
|
|
|
|
{
|
2019-06-06 08:56:03 -07:00
|
|
|
return __gl_setmode (fd, mode);
|
2017-02-23 09:14:06 -08:00
|
|
|
}
|
2019-06-06 08:56:03 -07:00
|
|
|
#endif
|
2017-02-23 09:14:06 -08:00
|
|
|
|
|
|
|
/* This macro is obsolescent. */
|
|
|
|
#define SET_BINARY(fd) ((void) set_binary_mode (fd, O_BINARY))
|
|
|
|
|
2013-07-09 10:16:21 -07:00
|
|
|
_GL_INLINE_HEADER_END
|
|
|
|
|
|
|
|
#endif /* _BINARY_H */
|