系统大小端判断

///
/// \brief  判断当前系统的大小端
/// \return
///     0: 大端模式
///     1: 小端模式
///
int checkSystem()
{
    union check {
        int i;
        char ch;
    } c;
    c.i = 1;
    return ( c.ch == 1 );
}

你可能感兴趣的:(系统大小端判断)