summaryrefslogtreecommitdiff
path: root/Zend/zend_operators.c
diff options
context:
space:
mode:
authorXinchen Hui <laruence@php.net>2014-05-24 21:19:34 +0800
committerXinchen Hui <laruence@php.net>2014-05-24 21:35:36 +0800
commit60e01e5d643056c9320de2ea2ee3f5396038b50e (patch)
treee2635df686839bdeec645e6ed58d1eaff8d9e0bd /Zend/zend_operators.c
parent9eb89dddb10b7d5b7aa97c04ffc9804cedb8ce04 (diff)
downloadphp-git-60e01e5d643056c9320de2ea2ee3f5396038b50e.tar.gz
Added folder mark and codes style
Diffstat (limited to 'Zend/zend_operators.c')
-rw-r--r--Zend/zend_operators.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c
index a1554164a0..f90412ac45 100644
--- a/Zend/zend_operators.c
+++ b/Zend/zend_operators.c
@@ -1078,7 +1078,7 @@ ZEND_API int mul_function(zval *result, zval *op1, zval *op2 TSRMLS_DC) /* {{{ *
}
/* }}} */
-ZEND_API int pow_function(zval *result, zval *op1, zval *op2 TSRMLS_DC)
+ZEND_API int pow_function(zval *result, zval *op1, zval *op2 TSRMLS_DC) /* {{{ */
{
zval op1_copy, op2_copy;
int converted = 0;
@@ -1160,6 +1160,7 @@ ZEND_API int pow_function(zval *result, zval *op1, zval *op2 TSRMLS_DC)
}
}
}
+/* }}} */
ZEND_API int div_function(zval *result, zval *op1, zval *op2 TSRMLS_DC) /* {{{ */
{
@@ -2507,12 +2508,11 @@ ZEND_API zend_string *zend_long_to_str(long num) /* {{{ */
{
char buf[MAX_LENGTH_OF_LONG + 1];
char *res;
- _zend_print_signed_to_buf(buf + sizeof(buf)-1, num, unsigned long, res);
- return STR_INIT(res, buf + sizeof(buf)-1 - res, 0);
+ _zend_print_signed_to_buf(buf + sizeof(buf) - 1, num, unsigned long, res);
+ return STR_INIT(res, buf + sizeof(buf) - 1 - res, 0);
}
/* }}} */
-
/*
* Local variables:
* tab-width: 4