Skip to content

Instantly share code, notes, and snippets.

@redboltz
Created June 18, 2015 08:12
Show Gist options
  • Save redboltz/fd95a671ca1b764137de to your computer and use it in GitHub Desktop.
Save redboltz/fd95a671ca1b764137de to your computer and use it in GitHub Desktop.
Boost.Predef on C
#include <boost/predef.h>
#include <stdio.h>
int main() {
printf("%d\n", BOOST_ENDIAN_BIG_BYTE);
printf("%d\n", BOOST_ENDIAN_BIG_WORD);
printf("%d\n", BOOST_ENDIAN_LITTLE_BYTE);
printf("%d\n", BOOST_ENDIAN_LITTLE_WORD);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment