aboutsummaryrefslogtreecommitdiff
path: root/tai_pack.c
diff options
context:
space:
mode:
Diffstat (limited to 'tai_pack.c')
-rw-r--r--tai_pack.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/tai_pack.c b/tai_pack.c
new file mode 100644
index 0000000..0a2bc06
--- /dev/null
+++ b/tai_pack.c
@@ -0,0 +1,16 @@
+#include "tai.h"
+
+void tai_pack(char *s,const struct tai *t)
+{
+ uint64 x;
+
+ x = t->x;
+ s[7] = x & 255; x >>= 8;
+ s[6] = x & 255; x >>= 8;
+ s[5] = x & 255; x >>= 8;
+ s[4] = x & 255; x >>= 8;
+ s[3] = x & 255; x >>= 8;
+ s[2] = x & 255; x >>= 8;
+ s[1] = x & 255; x >>= 8;
+ s[0] = x;
+}