ref: 4eaac6bfb11cc84259e8b418d4babffdf1c637eb
dir: /lib/c/string/strstr.c/
#include <stddef.h>
#include <string.h>
#undef strstr
char *
strstr(const char *s1, const char *s2)
{
const char *p;
int c = *s2;
if (c == '\0')
return NULL;
for (p = s1; p = strchr(p, c); ++p) {
if (!strcmp(p, s2))
return (char *) p;
}
return NULL;
}