Arduino-GPIO
General Purpose Input/Output (GPIO) library for Arduino
bswap.h
Go to the documentation of this file.
1 
22 #ifndef BSWAP_H
23 #define BSWAP_H
24 
25 #define bswap16(x) __builtin_bswap16(x)
26 #define bswap32(x) __builtin_bswap32(x)
27 #define bswap64(x) __builtin_bswap64(x)
28 #define bswap(x) bswap16(x)
29 
30 #endif