make #includes consistent
[hiphop-php.git] / hphp / runtime / ext / ext_bcmath.h
blob23463c1ad37f6c3de25eec4d1bef3019338c4ea9
1 /*
2 +----------------------------------------------------------------------+
3 | HipHop for PHP |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 2010- Facebook, Inc. (http://www.facebook.com) |
6 | Copyright (c) 1997-2010 The PHP Group |
7 +----------------------------------------------------------------------+
8 | This source file is subject to version 3.01 of the PHP license, |
9 | that is bundled with this package in the file LICENSE, and is |
10 | available through the world-wide-web at the following url: |
11 | http://www.php.net/license/3_01.txt |
12 | If you did not receive a copy of the PHP license and are unable to |
13 | obtain it through the world-wide-web, please send a note to |
14 | license@php.net so we can mail you a copy immediately. |
15 +----------------------------------------------------------------------+
18 #ifndef incl_HPHP_EXT_BCMATH_H_
19 #define incl_HPHP_EXT_BCMATH_H_
21 // >>>>>> Generated by idl.php. Do NOT modify. <<<<<<
23 #include "hphp/runtime/base/base_includes.h"
25 namespace HPHP {
26 ///////////////////////////////////////////////////////////////////////////////
28 bool f_bcscale(int64_t scale);
29 String f_bcadd(CStrRef left, CStrRef right, int64_t scale = -1);
30 String f_bcsub(CStrRef left, CStrRef right, int64_t scale = -1);
31 int64_t f_bccomp(CStrRef left, CStrRef right, int64_t scale = -1);
32 String f_bcmul(CStrRef left, CStrRef right, int64_t scale = -1);
33 String f_bcdiv(CStrRef left, CStrRef right, int64_t scale = -1);
34 String f_bcmod(CStrRef left, CStrRef right);
35 String f_bcpow(CStrRef left, CStrRef right, int64_t scale = -1);
36 Variant f_bcpowmod(CStrRef left, CStrRef right, CStrRef modulus,
37 int64_t scale = -1);
38 Variant f_bcsqrt(CStrRef operand, int64_t scale = -1);
40 ///////////////////////////////////////////////////////////////////////////////
43 #endif // incl_HPHP_EXT_BCMATH_H_