aboutsummaryrefslogtreecommitdiffstats
path: root/rawmemrcasechr_inv.c
diff options
context:
space:
mode:
Diffstat (limited to 'rawmemrcasechr_inv.c')
-rw-r--r--rawmemrcasechr_inv.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/rawmemrcasechr_inv.c b/rawmemrcasechr_inv.c
index 483de3e..63ef818 100644
--- a/rawmemrcasechr_inv.c
+++ b/rawmemrcasechr_inv.c
@@ -1,5 +1,5 @@
/* See LICENSE file for copyright and license details. */
-#include "libsimple.h"
+#include "common.h"
#ifndef TEST
@@ -8,7 +8,9 @@ libsimple_rawmemrcasechr_inv(const void *s_, int c, size_t n)
{
char *s = *(char **)(void *)&s_;
c = tolower(c);
- while (--n, tolower(s[n]) == c);
+ do {
+ n--;
+ } while (tolower(s[n]) == c);
return &s[n];
}