annotate lib/binary-io.h @ 14379:2330aac2ae54

maint: adjust cpp indentation to reflect nesting depth I.e., in a block of code that begins with an unnested "#if", put one space between the "#" in column 1 and following token. For example, -#include <sys/vfs.h> +# include <sys/vfs.h> Do this only in .c files that are part of a module I maintain. * lib/linkat.c: Filter through cppi. * lib/nanosleep.c: Likewise. * lib/openat.c: Likewise. * lib/openat-die.c: Likewise. * lib/dup3.c: Likewise. * lib/fchownat.c: Likewise. * lib/flock.c: Likewise. * lib/fsync.c: Likewise. * lib/fts.c: Likewise. * lib/getpass.c: Likewise. * lib/gettimeofday.c: Likewise. * lib/userspec.c: Likewise. * Makefile (sc_cpp_indent_check): New rule, to check this.
author Jim Meyering <meyering@redhat.com>
date Sun, 20 Feb 2011 23:02:43 +0100
parents f6ec6d171e52
children 8250f2777afc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4273
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 /* Binary mode I/O.
14079
97fc9a21a8fb maint: update almost all copyright ranges to include 2011
Jim Meyering <meyering@redhat.com>
parents: 12559
diff changeset
2 Copyright (C) 2001, 2003, 2005, 2008-2011 Free Software Foundation, Inc.
4273
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3
9309
bbbbbf4cd1c5 Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 5916
diff changeset
4 This program is free software: you can redistribute it and/or modify
4273
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5 it under the terms of the GNU General Public License as published by
9309
bbbbbf4cd1c5 Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 5916
diff changeset
6 the Free Software Foundation; either version 3 of the License, or
bbbbbf4cd1c5 Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 5916
diff changeset
7 (at your option) any later version.
4273
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 This program is distributed in the hope that it will be useful,
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 GNU General Public License for more details.
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14 You should have received a copy of the GNU General Public License
9309
bbbbbf4cd1c5 Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 5916
diff changeset
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
4273
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
16
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
17 #ifndef _BINARY_H
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
18 #define _BINARY_H
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
19
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20 /* For systems that distinguish between text and binary I/O.
14182
f6ec6d171e52 binary-io: fix O_TEXT on Haiku
Eric Blake <eblake@redhat.com>
parents: 14079
diff changeset
21 O_BINARY is guaranteed by the gnulib <fcntl.h>. */
4608
a079d84287d0 Make it work with MSVC.
Bruno Haible <bruno@clisp.org>
parents: 4273
diff changeset
22 #include <fcntl.h>
a079d84287d0 Make it work with MSVC.
Bruno Haible <bruno@clisp.org>
parents: 4273
diff changeset
23
a079d84287d0 Make it work with MSVC.
Bruno Haible <bruno@clisp.org>
parents: 4273
diff changeset
24 /* The MSVC7 <stdio.h> doesn't like to be included after '#define fileno ...',
a079d84287d0 Make it work with MSVC.
Bruno Haible <bruno@clisp.org>
parents: 4273
diff changeset
25 so we include it here first. */
a079d84287d0 Make it work with MSVC.
Bruno Haible <bruno@clisp.org>
parents: 4273
diff changeset
26 #include <stdio.h>
a079d84287d0 Make it work with MSVC.
Bruno Haible <bruno@clisp.org>
parents: 4273
diff changeset
27
12498
7aad334c08d7 binary-io: Avoid gcc warning due to SET_BINARY.
Bruno Haible <bruno@clisp.org>
parents: 12453
diff changeset
28 /* SET_BINARY (fd);
7aad334c08d7 binary-io: Avoid gcc warning due to SET_BINARY.
Bruno Haible <bruno@clisp.org>
parents: 12453
diff changeset
29 changes the file descriptor fd to perform binary I/O. */
4273
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
30 #if O_BINARY
9905
f2fd1d89ec4b Avoid warning on emx+gcc.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
31 # if defined __EMX__ || defined __DJGPP__ || defined __CYGWIN__
f2fd1d89ec4b Avoid warning on emx+gcc.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
32 # include <io.h> /* declares setmode() */
f2fd1d89ec4b Avoid warning on emx+gcc.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
33 # else
4273
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
34 # define setmode _setmode
5916
e9721cce07d6 Avoid gcc warning on mingw.
Bruno Haible <bruno@clisp.org>
parents: 5848
diff changeset
35 # undef fileno
4273
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
36 # define fileno _fileno
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
37 # endif
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
38 # ifdef __DJGPP__
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
39 # include <unistd.h> /* declares isatty() */
12453
41db359d31ee binary-io: avoid potential compilation warning
Eric Blake <ebb9@byu.net>
parents: 10778
diff changeset
40 /* Avoid putting stdin/stdout in binary mode if it is connected to
41db359d31ee binary-io: avoid potential compilation warning
Eric Blake <ebb9@byu.net>
parents: 10778
diff changeset
41 the console, because that would make it impossible for the user
41db359d31ee binary-io: avoid potential compilation warning
Eric Blake <ebb9@byu.net>
parents: 10778
diff changeset
42 to interrupt the program through Ctrl-C or Ctrl-Break. */
12498
7aad334c08d7 binary-io: Avoid gcc warning due to SET_BINARY.
Bruno Haible <bruno@clisp.org>
parents: 12453
diff changeset
43 # define SET_BINARY(fd) ((void) (!isatty (fd) ? (setmode (fd, O_BINARY), 0) : 0))
4273
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
44 # else
12498
7aad334c08d7 binary-io: Avoid gcc warning due to SET_BINARY.
Bruno Haible <bruno@clisp.org>
parents: 12453
diff changeset
45 # define SET_BINARY(fd) ((void) setmode (fd, O_BINARY))
4273
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
46 # endif
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
47 #else
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
48 /* On reasonable systems, binary I/O is the default. */
12498
7aad334c08d7 binary-io: Avoid gcc warning due to SET_BINARY.
Bruno Haible <bruno@clisp.org>
parents: 12453
diff changeset
49 # define SET_BINARY(fd) /* do nothing */ ((void) 0)
4273
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
50 #endif
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
51
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
52 #endif /* _BINARY_H */