imem.h

来自「Arithmetic for integers of almost unlimi」· C头文件 代码 · 共 27 行

H
27
字号
/* Integer Version 2.0, RD, 15.1.93	imem.h	*/#ifndef _IMEM_H#define _IMEM_H#include <iint.h>#if defined(__STDC__) || defined(__MWERKS__)#include <stdlib.h>#else#include <malloc.h>#endifEXTERN_FUNCTION(DigitType * newDigitVec, (int *maxl))EXTERN_FUNCTION(void delDigitVec, (DigitType *u, int maxl))EXTERN_FUNCTION(Integer * _newInteger, (_VOID_))EXTERN_FUNCTION(void _delInteger, (Integer *u))EXTERN_FUNCTION(char *Imalloc, (int))	/* Systemunabhaengiges malloc */EXTERN_FUNCTION(void Ifree, (char *)) /* Systemunabhaengiges free */EXTERN_FUNCTION(void IprintStatistics, (_VOID_))#endif

⌨️ 快捷键说明

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