From 49d8fa1058aaf23c29e074b2314492ae40d2f557 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Tue, 21 Feb 2017 12:05:07 +0000 Subject: Types change: big pass on libstddjb and libunixonacid libdatastruct still missing, library still not functional --- src/libstddjb/case_str.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/libstddjb/case_str.c') diff --git a/src/libstddjb/case_str.c b/src/libstddjb/case_str.c index a6cd9b4..9c79019 100644 --- a/src/libstddjb/case_str.c +++ b/src/libstddjb/case_str.c @@ -16,8 +16,8 @@ size_t case_str (char const *haystack, char const *needle) #else -#include #include +#include #include size_t case_str (char const *haystack, char const *needle) @@ -26,7 +26,7 @@ size_t case_str (char const *haystack, char const *needle) char const *p = haystack ; if (!nlen) return 0 ; for (; *p ; p++) - if (!case_diffb(p, nlen, needle)) return p - haystack ; + if (!strncasecmp(p, needle, nlen)) return p - haystack ; return strlen(haystack) ; } -- cgit v1.2.3