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