Blame lib/xbinary-io.h

Packit 709fb3
/* Binary mode I/O with checking
Packit 709fb3
   Copyright 2017 Free Software Foundation, Inc.
Packit 709fb3
Packit 709fb3
   This program is free software: you can redistribute it and/or modify
Packit 709fb3
   it under the terms of the GNU General Public License as published by
Packit 709fb3
   the Free Software Foundation; either version 3 of the License, or
Packit 709fb3
   (at your option) any later version.
Packit 709fb3
Packit 709fb3
   This program is distributed in the hope that it will be useful,
Packit 709fb3
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 709fb3
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 709fb3
   GNU General Public License for more details.
Packit 709fb3
Packit 709fb3
   You should have received a copy of the GNU General Public License
Packit 709fb3
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
Packit 709fb3
Packit 709fb3
#ifndef _XBINARY_IO_H
Packit 709fb3
#define _XBINARY_IO_H
Packit 709fb3
Packit 709fb3
#include "binary-io.h"
Packit 709fb3
Packit 709fb3
#ifndef _GL_INLINE_HEADER_BEGIN
Packit 709fb3
 #error "Please include config.h first."
Packit 709fb3
#endif
Packit 709fb3
_GL_INLINE_HEADER_BEGIN
Packit 709fb3
#ifndef XBINARY_IO_INLINE
Packit 709fb3
# define XBINARY_IO_INLINE _GL_INLINE
Packit 709fb3
#endif
Packit 709fb3
Packit 709fb3
#if O_BINARY
Packit 709fb3
extern _Noreturn void xset_binary_mode_error (void);
Packit 709fb3
#else
Packit 709fb3
XBINARY_IO_INLINE void xset_binary_mode_error (void) {}
Packit 709fb3
#endif
Packit 709fb3
Packit 709fb3
/* Set the mode of FD to MODE, which should be either O_TEXT or O_BINARY.
Packit 709fb3
   Report an error and exit if this fails.  */
Packit 709fb3
Packit 709fb3
XBINARY_IO_INLINE void
Packit 709fb3
xset_binary_mode (int fd, int mode)
Packit 709fb3
{
Packit 709fb3
  if (set_binary_mode (fd, mode) < 0)
Packit 709fb3
    xset_binary_mode_error ();
Packit 709fb3
}
Packit 709fb3
Packit 709fb3
_GL_INLINE_HEADER_END
Packit 709fb3
Packit 709fb3
#endif /* _XBINARY_IO_H */