2015-05-23 11:39:00 +03:00
|
|
|
/*
|
|
|
|
* littlebigman.c
|
|
|
|
*
|
|
|
|
* Created on: 23 mai 2015
|
|
|
|
* Author: coissac
|
|
|
|
*/
|
|
|
|
|
2015-05-23 13:18:28 +03:00
|
|
|
#include "obilittlebigman.h"
|
2015-05-23 11:39:00 +03:00
|
|
|
|
2015-05-23 13:18:28 +03:00
|
|
|
bool obi_is_little_end()
|
2015-05-23 11:39:00 +03:00
|
|
|
{
|
|
|
|
union { int entier;
|
|
|
|
char caractere[4] ;
|
|
|
|
} test;
|
|
|
|
|
|
|
|
test.entier=0x01020304;
|
|
|
|
|
|
|
|
return (test.caractere[3] == 1);
|
|
|
|
}
|
|
|
|
|