summaryrefslogtreecommitdiff
path: root/Zend/zend_operators.c
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2015-03-24 23:40:20 +0300
committerDmitry Stogov <dmitry@zend.com>2015-03-24 23:40:20 +0300
commit0ce7b4c8c6e9b5fc6f5bba9b0ed0b9f4f4d5634c (patch)
treeb607dc6e80a7587f8733432097259af0d3d57b79 /Zend/zend_operators.c
parente37e9d29861f7934352781aad59acf3e509f9644 (diff)
downloadphp-git-0ce7b4c8c6e9b5fc6f5bba9b0ed0b9f4f4d5634c.tar.gz
Removed unused functions
Diffstat (limited to 'Zend/zend_operators.c')
-rw-r--r--Zend/zend_operators.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c
index 8a58f3791e..3475174513 100644
--- a/Zend/zend_operators.c
+++ b/Zend/zend_operators.c
@@ -1497,33 +1497,6 @@ ZEND_API int ZEND_FASTCALL shift_right_function(zval *result, zval *op1, zval *o
}
/* }}} */
-/* must support result==op1 */
-ZEND_API int ZEND_FASTCALL add_char_to_string(zval *result, const zval *op1, const zval *op2) /* {{{ */
-{
- size_t length = Z_STRLEN_P(op1) + 1;
- zend_string *buf = zend_string_extend(Z_STR_P(op1), length, 0);
-
- buf->val[length - 1] = (char) Z_LVAL_P(op2);
- buf->val[length] = 0;
- ZVAL_NEW_STR(result, buf);
- return SUCCESS;
-}
-/* }}} */
-
-/* must support result==op1 */
-ZEND_API int ZEND_FASTCALL add_string_to_string(zval *result, const zval *op1, const zval *op2) /* {{{ */
-{
- size_t op1_len = Z_STRLEN_P(op1);
- size_t length = op1_len + Z_STRLEN_P(op2);
- zend_string *buf = zend_string_extend(Z_STR_P(op1), length, 0);
-
- memcpy(buf->val + op1_len, Z_STRVAL_P(op2), Z_STRLEN_P(op2));
- buf->val[length] = 0;
- ZVAL_NEW_STR(result, buf);
- return SUCCESS;
-}
-/* }}} */
-
ZEND_API int ZEND_FASTCALL concat_function(zval *result, zval *op1, zval *op2) /* {{{ */
{
zval op1_copy, op2_copy;