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

📄 strmem.h

📁 汇编语言编的关于ov143b.asm的小程序
💻 H
字号:
/*  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -