#include <compiler.h>
#include <types.h>
#include <arch/byteorder.h>


Go to the source code of this file.
Defines | |
| #define | swab32(x) |
| Swap the order of bytes in a 32-bit word. | |
Definition in file byteorder.h.
| #define swab32 | ( | x | ) |
Value:
((((x) & 0xff) << 24) | (((x) & 0xff00) << 8) \
| (((x) >> 8) & 0xff00) | (((x) >> 24) & 0xff))
Definition at line 51 of file byteorder.h.
1.5.8