mirror of
https://github.com/badaix/snapcast.git
synced 2025-06-07 05:11:43 +02:00
16 lines
274 B
C
16 lines
274 B
C
#ifndef ENDIAN_H
|
|
#define ENDIAN_H
|
|
|
|
#ifdef IS_BIG_ENDIAN
|
|
# define SWAP_16(x) (__builtin_bswap16(x))
|
|
# define SWAP_32(x) (__builtin_bswap32(x))
|
|
# define SWAP_64(x) (__builtin_bswap64(x))
|
|
#else
|
|
# define SWAP_16(x) x
|
|
# define SWAP_32(x) x
|
|
# define SWAP_64(x) x
|
|
#endif
|
|
|
|
|
|
#endif
|
|
|