Loading...
Select Version
&pagelevel(4)&pagelevel
Syntax | #include <string.h> char *strstr(const char *s1, const char *s2); | |
Description |
| |
Return val. | Pointer to the start of the string found in s1 | |
if successful. | ||
Null pointer | if s2 is not contained in s1. | |
Pointer to the start of s1 | ||
if s2 has a length of 0. | ||
Notes | Strings terminated with the null byte ( | |
See also |
|