summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux/syslinux-4.03/com32/lib/strncmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/syslinux/syslinux-4.03/com32/lib/strncmp.c')
-rw-r--r--contrib/syslinux/syslinux-4.03/com32/lib/strncmp.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/contrib/syslinux/syslinux-4.03/com32/lib/strncmp.c b/contrib/syslinux/syslinux-4.03/com32/lib/strncmp.c
deleted file mode 100644
index e41b9e3..0000000
--- a/contrib/syslinux/syslinux-4.03/com32/lib/strncmp.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * strncmp.c
- */
-
-#include <string.h>
-
-int strncmp(const char *s1, const char *s2, size_t n)
-{
- const unsigned char *c1 = (const unsigned char *)s1;
- const unsigned char *c2 = (const unsigned char *)s2;
- unsigned char ch;
- int d = 0;
-
- while (n--) {
- d = (int)(ch = *c1++) - (int)*c2++;
- if (d || !ch)
- break;
- }
-
- return d;
-}