summaryrefslogtreecommitdiffstats
path: root/polyp/endianmacros.h
diff options
context:
space:
mode:
Diffstat (limited to 'polyp/endianmacros.h')
-rw-r--r--polyp/endianmacros.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/polyp/endianmacros.h b/polyp/endianmacros.h
index 91489cd3..3ab1826a 100644
--- a/polyp/endianmacros.h
+++ b/polyp/endianmacros.h
@@ -33,6 +33,9 @@
#define INT32_SWAP(x) ( (int32_t) ( ((uint32_t) x >> 24) | ((uint32_t) x << 24) | (((uint32_t) x & 0xFF00) << 8) | ((((uint32_t) x) >> 8) & 0xFF00) ) )
#define UINT32_SWAP(x) ( (uint32_t) ( ((uint32_t) x >> 24) | ((uint32_t) x << 24) | (((uint32_t) x & 0xFF00) << 8) | ((((uint32_t) x) >> 8) & 0xFF00) ) )
+#define MAYBE_INT32_SWAP(c,x) ((c) ? INT32_SWAP(x) : x)
+#define MAYBE_UINT32_SWAP(c,x) ((c) ? UINT32_SWAP(x) : x)
+
#ifdef WORDS_BIGENDIAN
#define INT16_FROM_LE(x) INT16_SWAP(x)
#define INT16_FROM_BE(x) ((int16_t)(x))