You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
heartbeat/config/byteorder_test.c

16 lines
217 B

#include <stdio.h>
int
main ()
{
unsigned int a = 0x1234;
if ( (unsigned int) ( ((unsigned char *)&a)[0]) == 0x34 ) {
printf("little-endian\n");
return 0;
} else {
printf("big-endian\n");
return 1;
}
}