chiark / gitweb /
REORG Delete everything that's not innduct or build system or changed for innduct
[innduct.git] / lib / radix32.c
diff --git a/lib/radix32.c b/lib/radix32.c
deleted file mode 100644 (file)
index 7a7e503..0000000
+++ /dev/null
@@ -1,64 +0,0 @@
-/*  $Id: radix32.c 6118 2003-01-13 06:44:24Z rra $
-**
-**  Radix-32 strings divide a number into five-bit nibbles and use the
-**  alphabet 0..9a..v to represent 0..32.
-*/
-
-#include "config.h"
-#include "clibrary.h"
-#include <time.h>
-
-#include "libinn.h"
-
-
-static char    ALPHABET[] =
-    "0123456789abcdefghijklmnopqrstuv";
-
-
-/*
-**  Turn a number into a Radix-32 string.  Assume the number fits into
-**  32 bits.
-*/
-void Radix32(unsigned long l, char *buff)
-{
-    char                       *p;
-    int                                i;
-    char                       temp[10];
-
-    /* Simple sanity checks. */
-    if ((l &= 0xFFFFFFFFL) == 0) {
-       *buff++ = ALPHABET[0];
-       *buff = '\0';
-       return;
-    }
-
-    /* Format the string, in reverse. */
-    for (p = temp; l; l >>= 5)
-       *p++ = ALPHABET[(int)(l & 037)];
-
-    /* Reverse it. */
-    for (i = p - temp; --i >= 0; )
-       *buff++ = *--p;
-    *buff = '\0';
-}
-
-
-#if    0
-/*
-**  Return a Radix-32 string as a number, or ~0 on error.
-*/
-unsigned long
-Decode32(p)
-    char               *p;
-{
-    unsigned long      l;
-    char               *cp;
-
-    for (l = 0; *p; p++) {
-       if ((cp = strchr(ALPHABET, *p)) == NULL)
-           return ~0;
-       l = (l << 6) + cp - ALPHABET;
-    }
-    return l;
-}
-#endif /* 0 */