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

📄 eic.h

📁 这是又一个C语言解释器, 我们可以方便地扩展其功能, 并将其用于我们的工作中
💻 H
字号:
/* eic.h * *	(C) Copyright May  7 1995, Edmond J. Breen. *		   ALL RIGHTS RESERVED. * This code may be copied for personal, non-profit use only. * */#ifndef EICH_#define EICH_#define _need_eic_ptr#include "sys/types.h"#undef _need_eic_ptr#include "eicval.h"void *add_builtinfunc(char *name, val_t(*vfunc) ());void startEiC(int argc, char ** argv);void init_EiC(void);extern AR_t * AR[3];extern size_t ARGC;#define arg_list                  AR_t *#define getargc()                 ARGC#define getargs()                 AR[2]#define nextarg(x,type)           (*((type*)&(--x)->v))#define arg(i,x,type)             (*((type*)&x[-(i+1)].v))#define malloc(x)	xmalloc(x)#define calloc(x,y)	xcalloc(x,y)#define free(x)		xfree(x)#define realloc(x,y)    xrealloc(x,y)#endif /* EICH_ */

⌨️ 快捷键说明

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