Arduino-GPIO
General Purpose Input/Output (GPIO) library for Arduino
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
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
src
bswap.h
Generated on Sat Oct 14 2017 16:03:22 for Arduino-GPIO by
1.8.11