Age | Commit message (Expand) | Author | Files | Lines |
---|
STRSTR(3) Linux Programmer's Manual STRSTR(3)
NAME
strstr - locate a substringSYNOPSIS
#include <string.h> char *strstr(const char *haystack, const char *needle);DESCRIPTION
The strstr() function finds the first occurrence of the substring needle in the string haystack. The terminating `\0' characters are not compared.RETURN VALUE
The strstr() function returns a pointer to the beginning of the substring, or NULL if the substring is not found.
index, memchr, rindex, strchr, strpbrk, strsep, strspn, strtok,
GNU April 12, 1993 1
Top | Master Index | Keywords | Functions |
summaryrefslogtreecommitdiff |
Age | Commit message (Expand) | Author | Files | Lines |
---|