diff options
author | Derick Rethans <derick@php.net> | 2011-08-29 20:24:09 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2011-08-29 20:24:09 +0000 |
commit | b0be27432422a16ab4b68de08761b0a6b33575d5 (patch) | |
tree | 209ec781ce810fbb9f583e03866a85845fc348b9 /Zend/zend_operators.h | |
parent | 4a6c2a8b449afa9d3e9d53e58813c441d4c04931 (diff) | |
download | php-git-b0be27432422a16ab4b68de08761b0a6b33575d5.tar.gz |
- Zend engine part for bug #55158: Add SORT_NATURAL type to array_multisort
(patch by Arpad Ray).
Diffstat (limited to 'Zend/zend_operators.h')
-rw-r--r-- | Zend/zend_operators.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/zend_operators.h b/Zend/zend_operators.h index 9b0c790f8a..fb0c39abc5 100644 --- a/Zend/zend_operators.h +++ b/Zend/zend_operators.h @@ -301,7 +301,9 @@ ZEND_API double zend_string_to_double(const char *number, zend_uint length); ZEND_API int zval_is_true(zval *op); ZEND_API int compare_function(zval *result, zval *op1, zval *op2 TSRMLS_DC); ZEND_API int numeric_compare_function(zval *result, zval *op1, zval *op2 TSRMLS_DC); +ZEND_API int string_compare_function_ex(zval *result, zval *op1, zval *op2, zend_bool case_insensitive TSRMLS_DC); ZEND_API int string_compare_function(zval *result, zval *op1, zval *op2 TSRMLS_DC); +ZEND_API int string_case_compare_function(zval *result, zval *op1, zval *op2 TSRMLS_DC); #if HAVE_STRCOLL ZEND_API int string_locale_compare_function(zval *result, zval *op1, zval *op2 TSRMLS_DC); #endif |