Endian-swap a 32-bit value in place
#include <gulliver.h> void ENDIAN_SWAP32( uint32_t * num );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The ENDIAN_SWAP32() macro endian-swaps the value pointed to by num in place.
Swap the endianness of a value:
#include <stdio.h> #include <stdlib.h> #include <gulliver.h> #include <inttypes.h> int main( void ) { uint32_t val = 0xdeadbeef; ENDIAN_SWAP32( &val ); printf( "val = 0x%08x\n", val ); return EXIT_SUCCESS; }
This prints:
val = 0xefbeadde
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | Yes |
Signal handler | Yes |
Thread | Yes |
ENDIAN_SWAP32() is implemented as a macro.