|
||||
Endian ConversionThese are utility functions for swapping the endianness of a 16 bit integer or 32 bit integer. You can use these to handle endianness problems or write your own. #define Flip_int16(type)
(((type >> 8) & 0x00ff) | #define Flip_int32(type)
(((type >>24) & 0x000000ff) |
|