Sign in
apache
/
mynewt-core
/
refs/heads/develop
/
.
/
libc
/
baselibc
/
src
/
strstr.c
blob: 8850858a4471a36a42a505d2f1b371cc21d9c7d2 [
file
]
/*
* strstr.c
*/
#include
<string.h>
char
*
strstr
(
const
char
*
haystack
,
const
char
*
needle
)
{
return
(
char
*)
memmem
(
haystack
,
strlen
(
haystack
),
needle
,
strlen
(
needle
));
}