kolibrios/programs/develop/ktcc/trunk/libc/string/strstr.c

15 lines
221 B
C
Raw Normal View History

#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++;
}
}