mirror of
https://github.com/php/php-src.git
synced 2024-11-29 21:04:10 +08:00
Make zend_binary_strcasecmp compile again
This commit is contained in:
parent
cd72153455
commit
19de3be052
@ -1300,6 +1300,7 @@ ZEND_API int zend_binary_strncmp(char *s1, uint len1, char *s2, uint len2, uint
|
||||
ZEND_API int zend_binary_strcasecmp(char *s1, uint len1, char *s2, uint len2)
|
||||
{
|
||||
int len;
|
||||
int c1,c2;
|
||||
|
||||
len = MIN(len1, len2);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user