The libc implementation
Martin ‘Solar’ Baute
Public Domain
char * strstr(const char *s1,const char *s2)
Finds the first occurance of s1 in s2
Returns a pointer to the location where s1 is contained in s2
Returns NULL if s1 could not be found inside s2