📄 baseint.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 + -