aboutsummaryrefslogtreecommitdiffstats
path: root/strcasestr.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2018-08-18 23:40:11 +0200
committerMattias Andrée <maandree@kth.se>2018-08-18 23:40:11 +0200
commit3e746c51b3adcf97e4d11be30bfd91c8aaf2c2ba (patch)
treea00b8ec51cfaf110d8bf36daa91827c95dc107e7 /strcasestr.c
parentImprove makefile (diff)
downloadlibsimple-3e746c51b3adcf97e4d11be30bfd91c8aaf2c2ba.tar.gz
libsimple-3e746c51b3adcf97e4d11be30bfd91c8aaf2c2ba.tar.bz2
libsimple-3e746c51b3adcf97e4d11be30bfd91c8aaf2c2ba.tar.xz
Fix and run tests
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'strcasestr.c')
-rw-r--r--strcasestr.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/strcasestr.c b/strcasestr.c
index a3a98fc..4ffbde2 100644
--- a/strcasestr.c
+++ b/strcasestr.c
@@ -1,24 +1,24 @@
/* See LICENSE file for copyright and license details. */
#include "libsimple.h"
+#ifndef TEST
char *
libsimple_strcasestr(const char *h_, const char *n)
{
char *h = *(char **)(void *)&h_;
- size_t hn = strlen(h);
size_t nn = strlen(n);
- if (hn < nn)
- return NULL;
- for (hn -= nn; hn--; h++)
- if (!strcasecmp(h, n))
+ if (!nn)
+ return h;
+ for (; *h; h++)
+ if (!strncasecmp(h, n, nn))
return h;
return NULL;
}
-#ifdef TEST
-#include <assert.h>
+#else
+#include "test.h"
int
main(void)