Site: Site Map - Articles - Projects - Contact Form - List of pages - UPC Forums
Guides: Pokedex (Pokemon Data) - Diamond/Pearl - Mystery Dungeon - Emerald - Ruby/Sapphire - Gold/Silver - Red/Blue - Game Listing
Here is an inline method to determine the byte order of the running computer.
inline int IsLittleEndian(){ int i = 1 ; return (*((char *) &i )) ? 1 : 0; }