public inbox for newlib@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Modify strnstr.c.
@ 2017-08-28  8:38 Sichen Zhao
  2017-08-28  8:57 ` Corinna Vinschen
  0 siblings, 1 reply; 8+ messages in thread
From: Sichen Zhao @ 2017-08-28  8:38 UTC (permalink / raw)
  To: newlib; +Cc: gedare, joel, christian.mauderer, sebastian.huber, Sichen Zhao

---
 newlib/libc/string/strnstr.c | 24 ++++++++----------------
 1 file changed, 8 insertions(+), 16 deletions(-)

diff --git a/newlib/libc/string/strnstr.c b/newlib/libc/string/strnstr.c
index da5e5bd..7c87bbd 100644
--- a/newlib/libc/string/strnstr.c
+++ b/newlib/libc/string/strnstr.c
@@ -44,22 +44,14 @@ __FBSDID("$FreeBSD: head/lib/libc/string/strnstr.c 251069 2013-05-28 20:57:40Z e
  * first slen characters of s.
  */
 char *
-strnstr(const char *s, const char *find, size_t slen)
+strnstr(const char *haystack, const char *needle, size_t haystack_len)
 {
-	char c, sc;
-	size_t len;
+  size_t needle_len = strnlen(needle, haystack_len);
 
-	if ((c = *find++) != '\0') {
-		len = strlen(find);
-		do {
-			do {
-				if (slen-- < 1 || (sc = *s++) == '\0')
-					return (NULL);
-			} while (sc != c);
-			if (len > slen)
-				return (NULL);
-		} while (strncmp(s, find, len) != 0);
-		s--;
-	}
-	return ((char *)s);
+  if (needle_len < haystack_len || !needle[needle_len]) {
+    char *x = memmem(haystack, haystack_len, needle, needle_len);
+    if (x && !memchr(haystack, 0, x - haystack))
+      return x;
+  }
+  return NULL;
 }
-- 
2.7.4



^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-08-28 15:43 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-28  8:38 [PATCH] Modify strnstr.c Sichen Zhao
2017-08-28  8:57 ` Corinna Vinschen
2017-08-28 10:50   ` Sichen Zhao
2017-08-28 13:38   ` Sichen Zhao
2017-08-28 14:43     ` Corinna Vinschen
2017-08-28 15:15   ` Eric Blake
2017-08-28 15:32     ` Sichen Zhao
2017-08-28 16:09       ` Corinna Vinschen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).