repo.or.cz
/
syslinux-debian
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding upstream version 3.50~pre5.
[syslinux-debian/hramrach.git]
/
com32
/
lib
/
strstr.c
blob
10222dfd30a6447105ba386ecc914d3c8e4232d8
1
/*
2
* strstr.c
3
*/
4
5
#include <string.h>
6
7
char
*
strstr
(
const char
*
haystack
,
const char
*
needle
)
8
{
9
return
(
char
*)
memmem
(
haystack
,
strlen
(
haystack
),
needle
,
strlen
(
needle
));
10
}