Lines Matching refs:as2
37 * character) in the string as2. strstr() returns a pointer
39 * not found. If as2 is empty, the function returns as1.
43 strstr(const char *as1, const char *as2)
50 s2 = as2;
64 s2 = as2;
75 * character) in the string as2, where not more than n characters
78 * not found. If as2 is empty, the function returns as1.
82 strnstr(const char *as1, const char *as2, size_t n)
90 s2 = as2;
105 s2 = as2;