37 #include <sys/cdefs.h>
40 #include <sys/param.h>
41 #include <sys/libkern.h>
47 strstr(
const char *s,
const char *find)
52 if ((c = *find++) != 0) {
59 }
while (
strncmp(s, find, len) != 0);
62 return (__DECONST(
char *, s));
size_t strlen(const char *str)
int strncmp(const char *s1, const char *s2, size_t n)
char * strstr(const char *s, const char *find)