source: trunk/config.tests/unix/endian/endiantest.cpp@ 203

Last change on this file since 203 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 680 bytes
Line 
1// "MostSignificantByteFirst"
2short msb_bigendian[] = { 0x0000, 0x4d6f, 0x7374, 0x5369, 0x676e, 0x6966, 0x6963, 0x616e, 0x7442, 0x7974, 0x6546, 0x6972, 0x7374, 0x0000 };
3
4// "LeastSignificantByteFirst"
5short lsb_littleendian[] = { 0x0000, 0x654c, 0x7361, 0x5374, 0x6769, 0x696e, 0x6966, 0x6163, 0x746e, 0x7942, 0x6574, 0x6946, 0x7372, 0x0074, 0x0000 };
6
7int main(int, char **)
8{
9 // make sure the linker doesn't throw away the arrays
10 char *msb_bigendian_string = (char *) msb_bigendian;
11 char *lsb_littleendian_string = (char *) lsb_littleendian;
12 (void) msb_bigendian_string;
13 (void) lsb_littleendian_string;
14 return msb_bigendian[1] == lsb_littleendian[1];
15}
Note: See TracBrowser for help on using the repository browser.