bigint.h
来自「任意精度计算的实现」· C头文件 代码 · 共 24 行
H
24 行
#if !defined(__BIGINT_H)
#define __BIGINT_H
// Functions in bigint.cpp
#if defined (USEASM)
extern "C"
{
#endif
rawtype bigadd (rawtype *d, rawtype *s, size_t n, size_t c = 0);
rawtype bigsub (rawtype *d, rawtype *s, size_t n, size_t c = 0);
rawtype bigmul (rawtype *d, rawtype *s, rawtype f, size_t n);
rawtype bigdiv (rawtype *d, rawtype *s, rawtype f, size_t n);
int bigshr (rawtype *d, rawtype *s, size_t n);
int bigcmp (rawtype *d, rawtype *s, size_t n);
#if defined (USEASM)
}
#endif
#endif // __BIGINT_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?