forked from KolibriOS/kolibrios
15 lines
222 B
C
15 lines
222 B
C
|
#include <string.h>
|
||
|
|
||
|
char* strstr(const char* s, const char* find)
|
||
|
{
|
||
|
int len;
|
||
|
len=strlen(find);
|
||
|
while (1)
|
||
|
{
|
||
|
if (strncmp(s,find,len)==0) return (char*)s;
|
||
|
if (*s=='\0')
|
||
|
return (char*) 0;
|
||
|
s++;
|
||
|
}
|
||
|
}
|