Skip to content
Snippets Groups Projects
Commit 093d01be authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

removed
parent 486e791b
No related branches found
No related tags found
No related merge requests found
/* Are we little or big endian? From Harbison&Steele. */
main()
{
union
{
long l;
char c[sizeof(long)];
}
u;
u.l = 1;
if(u.c[0] == 1)
printf("LittleEndian\n");
else if(u.c[sizeof(long) - 1] == 1)
printf("BigEndian\n");
else
printf("unknownEndian");
exit(u.c[sizeof(long) - 1] == 1);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment