Skip to content

Instantly share code, notes, and snippets.

@dennisvennink
Created April 23, 2013 22:00
Show Gist options
  • Save dennisvennink/5447784 to your computer and use it in GitHub Desktop.
Save dennisvennink/5447784 to your computer and use it in GitHub Desktop.
Retrieves the host's byte order. Requires C99.
#ifndef ENDIAN_H
#define ENDIAN_H
#ifndef LITTLE_ENDIAN
#define LITTLE_ENDIAN 0
#endif
#ifndef BIG_ENDIAN
#define BIG_ENDIAN 1
#endif
#ifndef BYTE_ORDER
#define BYTE_ORDER (*(char *) &(int) {1} == 1 ? LITTLE_ENDIAN : BIG_ENDIAN)
#endif
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment