]> Joshua Wise's Git repositories - netwatch.git/blobdiff - grubload/minilib.c
Have a log console -- needs to be refactored
[netwatch.git] / grubload / minilib.c
diff --git a/grubload/minilib.c b/grubload/minilib.c
deleted file mode 100644 (file)
index b9813d7..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-#include "console.h"
-
-void memcpy(unsigned char *a2, unsigned char *a1, int bytes)
-{
-       while (bytes--)
-               *(a2++) = *(a1++);
-}
-
-void memmove(unsigned char *dest, unsigned char *src, int bytes)
-{
-       if ((dest > src) && (dest <= (src + bytes)))
-       {
-               /* do it backwards! */
-               dest += bytes;
-               src += bytes;
-               while (bytes--)
-                       *(--dest) = *(--src);
-       } else
-               while (bytes--)
-                       *(dest++) = *(src++);
-}
-
-int memcmp (unsigned char *a2, unsigned char *a1, int bytes) {
-       while (bytes--)
-       {
-               if (*(a2++) != *(a1++))
-                       return 1;
-       }
-       return 0;
-}
-
-int strcmp (unsigned char *a2, unsigned char *a1) {
-       while (1) {
-               if (*a2 != *a1) return 1;
-               if (*a2 == 0) return 0;
-               a1++;
-               a2++;
-       }
-}
-
-int strlen(char *c)
-{
-       int l = 0;
-       while (*(c++))
-               l++;
-       return l;
-}
-
-void puts(char *c)
-{
-       putbytes(c, strlen(c));
-}
-
-static char hexarr[] = "0123456789ABCDEF";
-void puthex(unsigned long l)
-{
-       int i;
-       for (i = 0; i < 8; i++)
-       {
-               putbyte(hexarr[l >> 28]);
-               l <<= 4;
-       }
-}
This page took 0.007178 seconds and 4 git commands to generate.