]> Joshua Wise's Git repositories - netwatch.git/blobdiff - lib/minilib.c
second arg of memcpy should be const
[netwatch.git] / lib / minilib.c
index 232878b8478743c4a70d6574ef2785768d9e01e7..48d79484dd5cda244405a0b30c4e2555c733716a 100644 (file)
@@ -1,7 +1,7 @@
 #include "console.h"
 #include <minilib.h>
 
-void memcpy(void *dest, void *src, int bytes)
+void memcpy(void *dest, const void *src, int bytes)
 {
        char * cdest = dest;
        char * csrc = src;
@@ -43,7 +43,7 @@ int strcmp (const char *a2, const char *a1) {
        }
 }
 
-int strlen(char *c)
+int strlen(const char *c)
 {
        int l = 0;
        while (*(c++))
@@ -58,7 +58,7 @@ void strcpy(char *a2, const char *a1)
        } while (*(a1++));
 }
 
-void puts(char *c)
+void puts(const char *c)
 {
        putbytes(c, strlen(c));
 }
@@ -81,5 +81,3 @@ void puthex(unsigned long l)
        tohex(d, l);
        puts(d);
 }
-
-
This page took 0.0233 seconds and 4 git commands to generate.