/* * ===================================================================================== * * Filename: endian.h * * Description: * * Version: 1.0 * Created: 29/02/24 10:11:52 AM IST * Revision: none * Compiler: gcc * * Author: YOUR NAME (), * Organization: * * ===================================================================================== */ #ifndef __ENDIANESS__ #define __ENDIANESS__ /* return 0 - Big endian, 1 for Little endian */ int machine_endianness_type(); #endif