int Endianee(void){
union{
int the_integer;
char the_single_byte;
}ENDIAN;
ENDIAN endian;
endian.the_integer = 1;
return endian.the_single_byte;
}
int Endianee(void){
union{
int the_integer;
char the_single_byte;
}ENDIAN;
ENDIAN endian;
endian.the_integer = 1;
return endian.the_single_byte;
}