Files
obitools3/src/obilittlebigman.c
2015-09-30 12:03:46 +02:00

25 lines
585 B
C

/****************************************************************************
* Code for endianness checking *
****************************************************************************/
/**
* @file obilittlebigman.c
* @author Eric Coissac (eric.coissac@metabarcoding.org)
* @date 23 May 2015
* @brief Code endianness checking.
*/
#include "obilittlebigman.h"
bool obi_is_little_endian() {
union { int entier;
char caractere[4] ;
} test;
test.entier=0x01020304;
return (test.caractere[3] == 1);
}