]> Joshua Wise's Git repositories - netwatch.git/blobdiff - lib/minilib.c
Tweak MSS up.
[netwatch.git] / lib / minilib.c
index 677c77ab614a9a4ffc235c0be3e848b2d3640e8c..e90f7aff62a89ce9295ad8f9fe4a322aa766b458 100644 (file)
@@ -9,6 +9,13 @@ void memcpy(void *dest, const void *src, int bytes)
                *(cdest++) = *(csrc++);
 }
 
+void memset(void *dest, int data, int bytes)
+{
+       unsigned char *cdest = dest;
+       while (bytes--)
+               *(cdest++) = (unsigned char)data;
+}
+
 void memmove(void *dest, void *src, int bytes)
 {
        char * cdest = dest;
@@ -43,6 +50,16 @@ int strcmp (const char *a2, const char *a1) {
        }
 }
 
+int strncmp (const char *a2, const char *a1, int n) {
+       while (n--) {
+               if (*a2 != *a1) return 1;
+               if (*a2 == 0) return 0;
+               a1++;
+               a2++;
+       }
+       return 0;
+}
+
 int strlen(const char *c)
 {
        int l = 0;
@@ -86,3 +103,11 @@ unsigned short htons(unsigned short in)
 {
        return (in >> 8) | (in << 8);
 }
+
+unsigned int htonl(unsigned int in)
+{
+       return ((in & 0xff) << 24) |
+              ((in & 0xff00) << 8) |
+              ((in & 0xff0000UL) >> 8) |
+              ((in & 0xff000000UL) >> 24);
+}
This page took 0.023815 seconds and 4 git commands to generate.