aboutsummaryrefslogtreecommitdiffstats
path: root/memcaseends.c
diff options
context:
space:
mode:
Diffstat (limited to 'memcaseends.c')
-rw-r--r--memcaseends.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/memcaseends.c b/memcaseends.c
index 0a673f7..09c12f7 100644
--- a/memcaseends.c
+++ b/memcaseends.c
@@ -1,5 +1,5 @@
/* See LICENSE file for copyright and license details. */
-#include "libsimple.h"
+#include "common.h"
#ifndef TEST
@@ -9,9 +9,12 @@ libsimple_memcaseends(const void *s_, size_t n, const void *t_, size_t m)
const char *s = s_, *t = t_;
if (n < m)
return 0;
- while (n--, m--)
+ while (m) {
+ n--;
+ m--;
if (tolower(s[n]) != tolower(t[m]))
return 0;
+ }
return 1;
}