Files
obitools3/src/obilittlebigman.c

21 lines
276 B
C
Raw Normal View History

/*
* littlebigman.c
*
* Created on: 23 mai 2015
* Author: coissac
*/
#include "obilittlebigman.h"
bool obi_is_little_end()
{
union { int entier;
char caractere[4] ;
} test;
test.entier=0x01020304;
return (test.caractere[3] == 1);
}