Name
strstr function — Finds a substring
Synopsis
const char* strstr(const char* str, const char* substr)
char* strstr( char* str, const char* substr)
The strstr
function returns
the address in str
of the first
occurrence of substr
or a null
pointer if substr
does not appear
in str
.