Sign in
android
/
platform
/
external
/
syslinux
/
refs/heads/oreo-mr1-release
/
.
/
com32
/
lib
/
strstr.c
blob: 0a3e743bc6419331bea6e0cebbe0320bd1a16d56 [
file
] [
log
] [
blame
] [
edit
]
/*
* strstr.c
*/
#include
<string.h>
char
*
strstr
(
const
char
*
haystack
,
const
char
*
needle
)
{
return
(
char
*)
memmem
(
haystack
,
strlen
(
haystack
),
needle
,
strlen
(
needle
));
}