static void getEndian(void) {

int n = 0x11223344;

char *c = (char *)&n;


if(c[0] == 0x11) {

/*BIG_ENDIAN*/

}

else {

/*LITTLE_ENDIAN*/

}

}



'Development > C/C++' 카테고리의 다른 글

[objdump in linux]  (0) 2014.01.15
[vim에서 hexedit하기, hex비교하기]  (0) 2014.01.15
[C 올림 구현]  (0) 2013.12.01
[const 키워드]  (0) 2013.10.22
[가장 간단한 이진수 출력]  (0) 2013.10.17
Posted by cyj4369
,