baseint.h

来自「任意精度计算的实现」· C头文件 代码 · 共 22 行

H
22
字号
#if !defined(__BASEINT_H)
#define __BASEINT_H


// Functions in baseint.cpp

#if defined (USEASM)
extern "C"
{
#endif

rawtype baseadd (rawtype *dest, rawtype *src1, rawtype *src2, size_t len, rawtype carry);
rawtype basesub (rawtype *dest, rawtype *src1, rawtype *src2, size_t len, rawtype carry);
rawtype basemuladd (rawtype *dest, rawtype *src1, rawtype *src2, rawtype src3, size_t len, rawtype carry);
rawtype basediv (rawtype *dest, rawtype *src1, rawtype src2, size_t len, rawtype carry);

#if defined (USEASM)
}
#endif

#endif  // __BASEINT_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?