shithub: scc

ref: 9b355acf495a70ce2767ffae671fe2ae22521a2e
dir: /src/libc/string/strstr.c/

View raw version
#include <stddef.h>
#include <string.h>

#undef strstr

char *
strstr(const char *s1, const char *s2)
{
	const char *p;
	int c = *s2;
	int len;

	if ((len = strlen(s2)) == 0)
		return (char *) s1;

	for (p = s1; p = strchr(p, c); ++p) {
		if (!strncmp(p, s2, len))
			return (char *) p;
	}

	return NULL;
}