home *** CD-ROM | disk | FTP | other *** search
/ Quake 'em / QUAKEEM.BIN / quake / programs / qube / endian.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-07  |  169 b   |  15 lines

  1. #include <stdio.h>
  2.  
  3. union {
  4.     long int i;
  5.     char c[4];
  6. } u;
  7.  
  8. main()
  9. {
  10.     u.i = 0x12345678;
  11.     
  12.     printf("Your system is %s-endian.\n", (u.c[0] == 0x78) ? "little" : "big");
  13. }
  14.  
  15.