Skip to content

Instantly share code, notes, and snippets.

@patricksuo
Created October 5, 2016 12:32
Show Gist options
  • Select an option

  • Save patricksuo/2299e7bd94fc43f5620e2d3dfc152629 to your computer and use it in GitHub Desktop.

Select an option

Save patricksuo/2299e7bd94fc43f5620e2d3dfc152629 to your computer and use it in GitHub Desktop.
c code snippet: is_little_endian
int is_little_endian() {
int a = 1;
return ((char *)(&a))[0]== 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment