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

📄 strtbl.h

📁 < 虚拟机设计与实现> 的source code, linux版本
💻 H
字号:
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+                                                                   +
+ strtbl.h - string table handle                                    +
+                                                                   +
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

#ifndef _STRTBL_H
#define _STRTBL_H

#define STR_TBL_INIT  2 * 1024	/*initial size of string table*/
#define STR_TBL_INC	  1024		/*amount increment when expand*/

extern U1 * strtbl_text;
extern U8 strtbl_iStr;	      /*next free space*/

int strtbl_init();
void strtbl_free();
int addStrTbl(char * str);
void printStrTbl();

#endif

⌨️ 快捷键说明

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