implement a64l and l64a (legacy xsi stuff)
authorRich Felker <dalias@aerifal.cx>
Fri, 2 Mar 2012 04:43:31 +0000 (23:43 -0500)
committerRich Felker <dalias@aerifal.cx>
Fri, 2 Mar 2012 04:43:31 +0000 (23:43 -0500)
src/misc/a64l.c [new file with mode: 0644]

diff --git a/src/misc/a64l.c b/src/misc/a64l.c
new file mode 100644 (file)
index 0000000..86aeefe
--- /dev/null
@@ -0,0 +1,26 @@
+#include <stdlib.h>
+#include <string.h>
+#include <stdint.h>
+
+static const char digits[] =
+       "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
+
+long a64l(const char *s)
+{
+       int e;
+       uint32_t x = 0;
+       for (e=0; e<36 && *s; e+=6, s++)
+               x |= (strchr(digits, *s)-digits)<<e;
+       return x;
+}
+
+char *l64a(long x0)
+{
+       static char s[7];
+       char *p;
+       uint32_t x = x0;
+       for (p=s; x; p++, x>>=6)
+               *p = digits[x&63];
+       *p = 0;
+       return s;
+}