summaryrefslogtreecommitdiff
path: root/ext/bcmath/bcmath_arginfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/bcmath/bcmath_arginfo.h')
-rw-r--r--ext/bcmath/bcmath_arginfo.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/ext/bcmath/bcmath_arginfo.h b/ext/bcmath/bcmath_arginfo.h
index dd246518dc..61f0092b45 100644
--- a/ext/bcmath/bcmath_arginfo.h
+++ b/ext/bcmath/bcmath_arginfo.h
@@ -45,3 +45,30 @@ ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_bcscale, 0, 0, IS_LONG, 0)
ZEND_ARG_TYPE_INFO(0, scale, IS_LONG, 0)
ZEND_END_ARG_INFO()
+
+
+ZEND_FUNCTION(bcadd);
+ZEND_FUNCTION(bcsub);
+ZEND_FUNCTION(bcmul);
+ZEND_FUNCTION(bcdiv);
+ZEND_FUNCTION(bcmod);
+ZEND_FUNCTION(bcpowmod);
+ZEND_FUNCTION(bcpow);
+ZEND_FUNCTION(bcsqrt);
+ZEND_FUNCTION(bccomp);
+ZEND_FUNCTION(bcscale);
+
+
+static const zend_function_entry ext_functions[] = {
+ ZEND_FE(bcadd, arginfo_bcadd)
+ ZEND_FE(bcsub, arginfo_bcsub)
+ ZEND_FE(bcmul, arginfo_bcmul)
+ ZEND_FE(bcdiv, arginfo_bcdiv)
+ ZEND_FE(bcmod, arginfo_bcmod)
+ ZEND_FE(bcpowmod, arginfo_bcpowmod)
+ ZEND_FE(bcpow, arginfo_bcpow)
+ ZEND_FE(bcsqrt, arginfo_bcsqrt)
+ ZEND_FE(bccomp, arginfo_bccomp)
+ ZEND_FE(bcscale, arginfo_bcscale)
+ ZEND_FE_END
+};