summaryrefslogtreecommitdiff
path: root/lib/libc/string/strstr.c
diff options
context:
space:
mode:
authorKacper <kacper@mail.openlinux.dev>2025-12-07 20:10:31 +0100
committerKacper <kacper@mail.openlinux.dev>2025-12-07 20:10:31 +0100
commitfc00c656c96528112d05cf0edf8631bd5eaea446 (patch)
treea6e0e6c588191a8bd1c64afc3b7a258e3e66c236 /lib/libc/string/strstr.c
Add build system scaffolding and libc headers
Diffstat (limited to 'lib/libc/string/strstr.c')
-rw-r--r--lib/libc/string/strstr.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/libc/string/strstr.c b/lib/libc/string/strstr.c
new file mode 100644
index 00000000..c3e2d5dd
--- /dev/null
+++ b/lib/libc/string/strstr.c
@@ -0,0 +1,27 @@
+#include <stddef.h>
+
+char *strstr(const char *s1, const char *s2)
+{
+ const char *p = s1;
+ const char *q = s2;
+
+ if (*q == '\0')
+ return (char *)p;
+
+ while (*p != '\0') {
+ const char *pp = p;
+ const char *qq = q;
+
+ while (*pp == *qq && *pp != '\0') {
+ pp++;
+ qq++;
+ }
+
+ if (*qq == '\0')
+ return (char *)p;
+
+ p++;
+ }
+
+ return NULL;
+}