blob: 85d098967fe602f1b6774a8f6238c700f210e580 [file] [log] [blame]
Mike Frysinger1fd98e02005-05-09 22:10:42 +00001/*
2 * native.c --- returns the ext2_flag for a native byte order
3 *
4 * Copyright (C) 1996 Theodore Ts'o.
5 *
6 * %Begin-Header%
7 * This file may be redistributed under the terms of the GNU Public
8 * License.
9 * %End-Header%
10 */
11
12#include <stdio.h>
13
14#include "ext2_fs.h"
15#include "ext2fs.h"
16
17int ext2fs_native_flag(void)
18{
19#ifdef WORDS_BIGENDIAN
20 return EXT2_FLAG_SWAP_BYTES;
21#else
22 return 0;
23#endif
24}
25
26
27