Files
obitools3/src/obilittlebigman.c

21 lines
280 B
C
Raw Normal View History

/*
* littlebigman.c
*
* Created on: 23 mai 2015
* Author: coissac
*/
#include "obilittlebigman.h"
2015-06-10 15:19:02 +02:00
bool obi_is_little_endian() {
union { int entier;
char caractere[4] ;
} test;
test.entier=0x01020304;
return (test.caractere[3] == 1);
}