⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 baseint.h

📁 任意精度计算的实现
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -