Searched refs:haystack (Results 1 – 4 of 4) sorted by relevance
218 extern PSTR CSL_Strstr(IN CONST PSTR haystack, IN CONST PSTR needle);
219 extern PSTR CSL_Strstr(IN CONST PSTR haystack, IN CONST PSTR needle);
604 bcmstrstr(char *haystack, char *needle) in bcmstrstr() argument609 if ((haystack == NULL) || (needle == NULL)) in bcmstrstr()610 return (haystack); in bcmstrstr()613 len = strlen(haystack) - nlen + 1; in bcmstrstr()616 if (memcmp(needle, &haystack[i], nlen) == 0) in bcmstrstr()617 return (&haystack[i]); in bcmstrstr()
200 extern char *bcmstrstr(char *haystack, char *needle);