mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00

* ext/bcmath: coding style: use indentation And add braces to block statements, as the current code was pretty much unreadable with how inconsistent it was. * ext/bcmath: Remove some useless header inclusions * ext/bcmath: Use standard C99 bool type instead of char * ext/bcmath: Include specific headers instead of config.h * Restructure definitions to reduce header inclusions * Use size_t as a more appropriate type * Remove unused variable full_scale * Refactor bc_raisemod() to get rid of Zend dependencies This separates the concerns of throwing exceptions back into the PHP_FUNCTION instead of being the responsibility of the library * Refactor bc_raise() to get rid of Zend dependencies This separates the concerns of throwing exceptions back into the PHP_FUNCTION instead of being the responsibility of the library * Refactor bc_divmod() and bc_modulo() to return bool Return false on division by 0 attempt instead of -1 and true on success instead of 0 * Refactor bc_divide() to return bool Return false on division by 0 attempt instead of -1 and true on success instead of 0
43 lines
1.5 KiB
C
43 lines
1.5 KiB
C
/*
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) The PHP Group |
|
|
+----------------------------------------------------------------------+
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
| available through the world-wide-web at the following url: |
|
|
| https://www.php.net/license/3_01.txt |
|
|
| 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. |
|
|
+----------------------------------------------------------------------+
|
|
| Author: Andi Gutmans <andi@php.net> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#ifndef PHP_BCMATH_H
|
|
#define PHP_BCMATH_H
|
|
|
|
#include "libbcmath/src/bcmath.h"
|
|
#include "zend_API.h"
|
|
|
|
extern zend_module_entry bcmath_module_entry;
|
|
#define phpext_bcmath_ptr &bcmath_module_entry
|
|
|
|
#include "php_version.h"
|
|
#define PHP_BCMATH_VERSION PHP_VERSION
|
|
|
|
ZEND_BEGIN_MODULE_GLOBALS(bcmath)
|
|
bc_num _zero_;
|
|
bc_num _one_;
|
|
bc_num _two_;
|
|
int bc_precision;
|
|
ZEND_END_MODULE_GLOBALS(bcmath)
|
|
|
|
#if defined(ZTS) && defined(COMPILE_DL_BCMATH)
|
|
ZEND_TSRMLS_CACHE_EXTERN()
|
|
#endif
|
|
|
|
ZEND_EXTERN_MODULE_GLOBALS(bcmath)
|
|
#define BCG(v) ZEND_MODULE_GLOBALS_ACCESSOR(bcmath, v)
|
|
|
|
#endif /* PHP_BCMATH_H */
|