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