strmem.h

来自「汇编语言编的关于ov143b.asm的小程序」· C头文件 代码 · 共 20 行

H
20
字号
/*  001  20-Apr-87  strmem.h

        Copyright (c) 1987 by Blue Sky Software.  All rights reserved.
*/

#define ALTCALL pascal         /* alternate calling method reduces overhead */

#define Malloc(i) mustalloc(i)         /* for cases where we must alloc */
#define Strdup(s) mustdup(s)           /* memory or we die */
#define Strndup(s,n) mustndup(s,n)

#ifdef LINT_ARGS
char * ALTCALL mustalloc(int);         /* Malloc() */
char * ALTCALL mustdup(char *);        /* Strdup() */
char * ALTCALL mustndup(char *, int);  /* Strndup() */
#else
char * ALTCALL mustalloc();            /* Malloc() */
char * ALTCALL mustdup();              /* Strdup() */
char * ALTCALL mustndup();             /* Strndup() */
#endif

⌨️ 快捷键说明

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