[hackers] [scc] [libc] Add strstr() || Roberto E. Vargas Caballero

From: <git_AT_suckless.org>
Date: Thu, 23 Feb 2017 16:16:26 +0100 (CET)

commit db5ac79bf98804660cac31c903b222ff3933a1b5
Author: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
AuthorDate: Thu Feb 23 15:16:38 2017 +0100
Commit: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
CommitDate: Thu Feb 23 15:16:38 2017 +0100

    [libc] Add strstr()

diff --git a/libc/src/Makefile b/libc/src/Makefile
index e8612df..2984f58 100644
--- a/libc/src/Makefile
+++ b/libc/src/Makefile
_AT_@ -3,7 +3,7 @@
 
 LIBCOBJ = assert.o strcpy.o strcmp.o strlen.o strchr.o \
           strrchr.o strcat.o strncmp.o strncpy.o strncat.o strcoll.o \
- strxfrm.o strtok.o \
+ strxfrm.o strtok.o strstr.o \
           memset.o memcpy.o memmove.o memcmp.o memchr.o \
           isalnum.o isalpha.o isascii.o isblank.o iscntrl.o isdigit.o \
           isgraph.o islower.o isprint.o ispunct.o isspace.o isupper.o \
diff --git a/libc/src/strstr.c b/libc/src/strstr.c
new file mode 100644
index 0000000..7f000f3
--- /dev/null
+++ b/libc/src/strstr.c
_AT_@ -0,0 +1,26 @@
+/* See LICENSE file for copyright and license details. */
+
+#include <string.h>
+
+char *
+strstr(const char *s1, const char *s2)
+{
+ const char *p, *q;
+ int c;
+
+ c = *s2++;
+ if (c == '\0')
+ return (char *) s1;
+
+ for ( ; *s1; ++s1) {
+ if (*s1 != c)
+ continue;
+ p = s1++;
+ for (q = s2; *q && *s1 == *q; ++s1, ++q)
+ /* nothing */;
+ if (*q == '\0')
+ return (char *) p;
+ --s1;
+ }
+ return NULL;
+}
Received on Thu Feb 23 2017 - 16:16:26 CET

This archive was generated by hypermail 2.3.0 : Thu Feb 23 2017 - 16:24:22 CET