OB.DAAC Logo
NASA Logo
Ocean Color Science Software

ocssw V2022
endianess.c
Go to the documentation of this file.
1 
10 int endianess(void) {
11  int x = 1;
12  return ( *(char *) &x == 1);
13 }
int endianess(void)
determine endianess
Definition: endianess.c:10