diff options
| author | Zeev Suraski <zeev@php.net> | 1999-04-23 03:32:33 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 1999-04-23 03:32:33 +0000 |
| commit | 1aa2c5c0b4457cf7f275571defe908859328f950 (patch) | |
| tree | d8a113ad58b7371136105c53f1a826f869326c5c /Zend/zend_operators.h | |
| parent | cad2318a549dff68a7c4d36b5b6b8924f57e6547 (diff) | |
| download | php-git-1aa2c5c0b4457cf7f275571defe908859328f950.tar.gz | |
Ok, call me crazy, because I probably am.
Thread safe version now uses a C++ scanner object. Works fully.
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 873cbcb7ee..ee0eb96b3d 100644 --- a/Zend/zend_operators.h +++ b/Zend/zend_operators.h @@ -45,6 +45,7 @@ ZEND_API int is_smaller_or_equal_function(zval *result, zval *op1, zval *op2); ZEND_API int increment_function(zval *op1); ZEND_API int decrement_function(zval *op2); +BEGIN_EXTERN_C() ZEND_API void convert_scalar_to_number(zval *op); ZEND_API void convert_to_string(zval *op); ZEND_API void convert_to_long(zval *op); @@ -55,6 +56,7 @@ ZEND_API void convert_to_object(zval *op); ZEND_API int add_char_to_string(zval *result, zval *op1, zval *op2); ZEND_API int add_string_to_string(zval *result, zval *op1, zval *op2); ZEND_API void convert_to_double(zval *op); +END_EXTERN_C() ZEND_API int zval_is_true(zval *op); ZEND_API int compare_function(zval *result, zval *op1, zval *op2); |
