mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fix zend_string_starts_with_literal_ci (#14137)
This commit is contained in:
parent
77c21cab2a
commit
f5e450d101
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue