diff options
author | Derick Rethans <derick@php.net> | 2004-09-11 14:22:35 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2004-09-11 14:22:35 +0000 |
commit | 4bae5cb4d051b50d8c1ffac90affca36a8429f6b (patch) | |
tree | 148a00eff682ab89f208b5057ddf54350d8138de /Zend/zend_operators.h | |
parent | b3a32e6d2165a9a97681ea0c57fcb986091e79cf (diff) | |
download | php-git-4bae5cb4d051b50d8c1ffac90affca36a8429f6b.tar.gz |
- MFB: Added the sorting flag SORT_LOCALE_STRING to the sort() functions which
makes them sort based on the current locale. (Derick)
Diffstat (limited to 'Zend/zend_operators.h')
-rw-r--r-- | Zend/zend_operators.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Zend/zend_operators.h b/Zend/zend_operators.h index b6b845ae76..67ee246592 100644 --- a/Zend/zend_operators.h +++ b/Zend/zend_operators.h @@ -179,6 +179,9 @@ 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(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 ZEND_API void zend_str_tolower(char *str, unsigned int length); ZEND_API char *zend_str_tolower_copy(char *dest, const char *source, unsigned int length); |