Home
last modified time | relevance | path

Searched refs:s2_end (Results 1 – 2 of 2) sorted by relevance

/PHP-8.1/ext/standard/
H A Dphp_string.h59 PHPAPI size_t php_strspn(const char *s1, const char *s2, const char *s1_end, const char *s2_end);
60 PHPAPI size_t php_strcspn(const char *s1, const char *s2, const char *s1_end, const char *s2_end);
H A Dstring.c1765 PHPAPI size_t php_strspn(const char *s1, const char *s2, const char *s1_end, const char *s2_end) argument
1771 for (spanp = s2; p != s1_end && spanp != s2_end;) {
1782 PHPAPI size_t php_strcspn(const char *s1, const char *s2, const char *s1_end, const char *s2_end) argument
1793 } while (spanp++ < (s2_end - 1));

Completed in 43 milliseconds