Searched defs:find (Results 1 - 2 of 2) sorted by relevance

/bionic/libc/upstream-netbsd/lib/libc/string/
H A Dstrcasestr.c46 * Find the first occurrence of find in s, ignore case.
49 strcasestr(const char *s, const char *find) argument
55 _DIAGASSERT(find != NULL);
57 if ((c = *find++) != 0) {
59 len = strlen(find);
65 } while (strncasecmp(s, find, len) != 0);
/bionic/libc/upstream-openbsd/lib/libc/string/
H A Dstrstr.c37 * Find the first occurrence of find in s.
40 strstr(const char *s, const char *find) argument
45 if ((c = *find++) != 0) {
46 len = strlen(find);
52 } while (strncmp(s, find, len) != 0);

Completed in 1061 milliseconds