summaryrefslogtreecommitdiff
path: root/Zend/zend_operators.h
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2011-08-29 20:24:09 +0000
committerDerick Rethans <derick@php.net>2011-08-29 20:24:09 +0000
commit56a87c280649f456e5062751b34ce881f957c69a (patch)
treea92e0660d9c62568edf043bf49d05930ca25766b /Zend/zend_operators.h
parentb52256c5be9398e288f1503713bef959c8b7ae72 (diff)
downloadphp-git-56a87c280649f456e5062751b34ce881f957c69a.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.h2
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