Main Page   Compound List   File List   Compound Members   File Members  

test_endian.c

Go to the documentation of this file.
00001   #define BIG_ENDIAN      0
00002   #define LITTLE_ENDIAN   1
00003 
00004   int little_endian(void)
00005   {
00006       short int w = 0x0001;
00007       char *byte = (char *) &w;
00008       return(byte[0] ? LITTLE_ENDIAN : BIG_ENDIAN);
00009   }
00010 
00015 main () {  
00016   if(little_endian()) {
00017      printf("-DSLM_SWAP_BYTES");
00018   } 
00019 }

Generated on Tue Dec 21 13:54:46 2004 by doxygen1.2.18