comparison bswap.h @ 23:ac07d427fbc6 src

Use consistent multiple inclusion guards everywhere: Combine them from a LIBDVDREAD_ prefix and the filename.
author diego
date Sun, 14 Sep 2008 20:37:38 +0000
parents 447c5319a522
children 98951f8ec89c
comparison
equal deleted inserted replaced
22:447c5319a522 23:ac07d427fbc6
1 #ifndef BSWAP_H_INCLUDED
2 #define BSWAP_H_INCLUDED
3
4 /* 1 /*
5 * Copyright (C) 2000, 2001 Billy Biggs <vektor@dumbterm.net>, 2 * Copyright (C) 2000, 2001 Billy Biggs <vektor@dumbterm.net>,
6 * Håkan Hjort <d95hjort@dtek.chalmers.se> 3 * Håkan Hjort <d95hjort@dtek.chalmers.se>
7 * 4 *
8 * This file is part of libdvdread. 5 * This file is part of libdvdread.
19 * 16 *
20 * You should have received a copy of the GNU General Public License along 17 * You should have received a copy of the GNU General Public License along
21 * with libdvdread; if not, write to the Free Software Foundation, Inc., 18 * with libdvdread; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 */ 20 */
21
22 #ifndef LIBDVDREAD_BSWAP_H
23 #define LIBDVDREAD_BSWAP_H
24 24
25 #include <config.h> 25 #include <config.h>
26 26
27 #if defined(WORDS_BIGENDIAN) 27 #if defined(WORDS_BIGENDIAN)
28 /* All bigendian systems are fine, just ignore the swaps. */ 28 /* All bigendian systems are fine, just ignore the swaps. */
101 101
102 #endif 102 #endif
103 103
104 #endif /* WORDS_BIGENDIAN */ 104 #endif /* WORDS_BIGENDIAN */
105 105
106 #endif /* BSWAP_H_INCLUDED */ 106 #endif /* LIBDVDREAD_BSWAP_H */