1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/ext/bcmath/bcmath.stub.php
Gabriel Caruso 4aabfe911e Revert "Update versions for PHP 8.0.21"
This reverts commit 6eedacdf15.
2022-07-06 12:06:48 +02:00

24 lines
772 B
PHP

<?php
/** @generate-function-entries */
function bcadd(string $num1, string $num2, ?int $scale = null): string {}
function bcsub(string $num1, string $num2, ?int $scale = null): string {}
function bcmul(string $num1, string $num2, ?int $scale = null): string {}
function bcdiv(string $num1, string $num2, ?int $scale = null): string {}
function bcmod(string $num1, string $num2, ?int $scale = null): string {}
function bcpowmod(string $num, string $exponent, string $modulus, ?int $scale = null): string {}
function bcpow(string $num, string $exponent, ?int $scale = null): string {}
function bcsqrt(string $num, ?int $scale = null): string {}
function bccomp(string $num1, string $num2, ?int $scale = null): int {}
function bcscale(?int $scale = null): int {}