diff options
author | Xinchen Hui <laruence@php.net> | 2014-12-21 23:16:25 -0500 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2014-12-21 23:16:25 -0500 |
commit | c24125e2f90e7cc88c8a2c3560bc458dbc8b704d (patch) | |
tree | ff9486e671818f4a401acfeafab1b93537375d75 /Zend/zend_operators.h | |
parent | 201e1b8a8d22b244b4e22d239db55ea85ccc6983 (diff) | |
download | php-git-c24125e2f90e7cc88c8a2c3560bc458dbc8b704d.tar.gz |
Micro optimization
Diffstat (limited to 'Zend/zend_operators.h')
-rw-r--r-- | Zend/zend_operators.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_operators.h b/Zend/zend_operators.h index 57120228fb..5a20ac72a7 100644 --- a/Zend/zend_operators.h +++ b/Zend/zend_operators.h @@ -338,9 +338,9 @@ ZEND_API int zend_binary_strcasecmp_l(const char *s1, size_t len1, const char *s ZEND_API int zend_binary_strncasecmp_l(const char *s1, size_t len1, const char *s2, size_t len2, size_t length); ZEND_API zend_long zendi_smart_strcmp(zval *s1, zval *s2); -ZEND_API void zend_compare_symbol_tables(zval *result, HashTable *ht1, HashTable *ht2); -ZEND_API void zend_compare_arrays(zval *result, zval *a1, zval *a2); -ZEND_API void zend_compare_objects(zval *result, zval *o1, zval *o2); +ZEND_API int zend_compare_symbol_tables(HashTable *ht1, HashTable *ht2); +ZEND_API int zend_compare_arrays(zval *a1, zval *a2); +ZEND_API int zend_compare_objects(zval *o1, zval *o2); ZEND_API int zend_atoi(const char *str, int str_len); ZEND_API zend_long zend_atol(const char *str, int str_len); |