Fix zend_string_starts_with_literal_ci (#14137)

This commit is contained in:
twosee 2024-05-06 13:49:33 +08:00 committed by GitHub
parent 77c21cab2a
commit f5e450d101
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -422,7 +422,7 @@ static zend_always_inline bool zend_string_starts_with_ci(const zend_string *str
} }
#define zend_string_starts_with_literal_ci(str, prefix) \ #define zend_string_starts_with_literal_ci(str, prefix) \
zend_string_starts_with_cstr(str, prefix, strlen(prefix)) zend_string_starts_with_cstr_ci(str, prefix, strlen(prefix))
/* /*
* DJBX33A (Daniel J. Bernstein, Times 33 with Addition) * DJBX33A (Daniel J. Bernstein, Times 33 with Addition)