summaryrefslogtreecommitdiff
path: root/src/strings/strcasecmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/strings/strcasecmp.c')
-rw-r--r--src/strings/strcasecmp.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/strings/strcasecmp.c b/src/strings/strcasecmp.c
deleted file mode 100644
index b8f6ea11..00000000
--- a/src/strings/strcasecmp.c
+++ /dev/null
@@ -1,31 +0,0 @@
-#if 0
-
-#include <strings.h>
-#include <ctype.h>
-
-int strcasecmp(const char *s1, const char *s2)
-{
- while (*s1 && *s2) {
- char c1 = tolower(*s1);
- char c2 = tolower(*s2);
- if (c1 != c2) {
- return c1 - c2;
- }
- }
-
- if (*s1) {
- return -1;
- } else if (*s2) {
- return 1;
- }
-
- return 0;
-}
-
-/*
-XOPEN(400)
-POSIX(200809)
-*/
-
-
-#endif