1999-04-22 07:28:00 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2004-01-09 01:33:29 +08:00
|
|
|
| PHP Version 5 |
|
1999-04-22 07:28:00 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2004-01-09 01:33:29 +08:00
|
|
|
| Copyright (c) 1997-2004 The PHP Group |
|
1999-04-22 07:28:00 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2003-06-11 04:04:29 +08:00
|
|
|
| This source file is subject to version 3.0 of the PHP license, |
|
2000-07-24 09:40:02 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
|
|
|
| http://www.php.net/license/3_0.txt. |
|
2000-07-24 09:40:02 +08:00
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
1999-04-22 07:28:00 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2002-02-28 16:29:35 +08:00
|
|
|
| Author: Andi Gutmans <andi@zend.com> |
|
1999-04-22 07:28:00 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-07-24 09:40:02 +08:00
|
|
|
*/
|
1999-04-22 07:28:00 +08:00
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2000-07-03 07:46:51 +08:00
|
|
|
#ifndef PHP_BCMATH_H
|
|
|
|
#define PHP_BCMATH_H
|
1999-04-22 07:28:00 +08:00
|
|
|
|
2003-12-10 07:59:33 +08:00
|
|
|
#if HAVE_BCMATH
|
1999-04-22 07:28:00 +08:00
|
|
|
|
2002-11-22 17:25:29 +08:00
|
|
|
#include "libbcmath/src/bcmath.h"
|
|
|
|
|
1999-12-18 04:55:31 +08:00
|
|
|
extern zend_module_entry bcmath_module_entry;
|
1999-05-03 19:11:23 +08:00
|
|
|
#define phpext_bcmath_ptr &bcmath_module_entry
|
1999-04-22 07:28:00 +08:00
|
|
|
|
2002-11-22 17:25:29 +08:00
|
|
|
PHP_MINIT_FUNCTION(bcmath);
|
2003-12-10 07:59:33 +08:00
|
|
|
PHP_MSHUTDOWN_FUNCTION(bcmath);
|
2004-07-14 08:14:43 +08:00
|
|
|
PHP_RINIT_FUNCTION(bcmath);
|
|
|
|
PHP_RSHUTDOWN_FUNCTION(bcmath);
|
2000-10-08 19:45:18 +08:00
|
|
|
PHP_MINFO_FUNCTION(bcmath);
|
|
|
|
|
1999-07-27 04:09:08 +08:00
|
|
|
PHP_FUNCTION(bcadd);
|
|
|
|
PHP_FUNCTION(bcsub);
|
|
|
|
PHP_FUNCTION(bcmul);
|
|
|
|
PHP_FUNCTION(bcdiv);
|
|
|
|
PHP_FUNCTION(bcmod);
|
|
|
|
PHP_FUNCTION(bcpow);
|
|
|
|
PHP_FUNCTION(bcsqrt);
|
|
|
|
PHP_FUNCTION(bccomp);
|
|
|
|
PHP_FUNCTION(bcscale);
|
2002-12-12 00:28:16 +08:00
|
|
|
PHP_FUNCTION(bcpowmod);
|
1999-04-22 07:28:00 +08:00
|
|
|
|
2003-12-10 07:59:33 +08:00
|
|
|
ZEND_BEGIN_MODULE_GLOBALS(bcmath)
|
|
|
|
bc_num _zero_;
|
|
|
|
bc_num _one_;
|
|
|
|
bc_num _two_;
|
|
|
|
long bc_precision;
|
|
|
|
ZEND_END_MODULE_GLOBALS(bcmath)
|
|
|
|
|
|
|
|
#if ZTS
|
|
|
|
#define BCG(v) TSRMG(bcmath_globals_id, zend_bcmath_globals *, v)
|
|
|
|
#else
|
|
|
|
#define BCG(v) (bcmath_globals.v)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ZEND_EXTERN_MODULE_GLOBALS(bcmath)
|
|
|
|
|
1999-04-22 07:28:00 +08:00
|
|
|
#else
|
|
|
|
|
1999-05-03 19:11:23 +08:00
|
|
|
#define phpext_bcmath_ptr NULL
|
1999-04-22 07:28:00 +08:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2000-07-03 07:46:51 +08:00
|
|
|
#endif /* PHP_BCMATH_H */
|