+noinst_PROGRAMS = swap_test
+
+swap_test_SOURCES = swap_test.cpp
+
noinst_LIBRARIES = libMultiPlayer.a
libMultiPlayer_a_SOURCES = multiplayrxmgr.cxx multiplayrxmgr.hxx multiplaytxmgr.cxx multiplaytxmgr.hxx mpplayer.cxx mpplayer.hxx mpmessages.hxx tiny_xdr.cpp tiny_xdr.hpp
--- /dev/null
+
+#include <stdio.h>
+#include <stdint.h>
+#include "tiny_xdr.hpp"
+
+int main()
+{
+ uint32_t ui32 = 0xFFAACCEE;
+ uint64_t ui64 = 0x00BBAADDFFAACCEELL;
+
+ printf("UI32: (normal) %x\nUI32: (swapped) %x\n\n", ui32, bswap_32(ui32) );
+ printf("UI64: (normal) %llx\nUI64: (swapped) %llx\n\n", ui64, bswap_64(ui64) );
+
+ return 0;
+}