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

📄 esd.h

📁 一个通讯程序源码
💻 H
字号:
/*+-----------------------------------------------------------------------	esd.h -- support header for users of esdutil.c	wht@n4hgf.Mt-Park.GA.US------------------------------------------------------------------------*//*+:EDITS:*//*:09-10-1992-13:59-wht@n4hgf-ECU release 3.20 *//*:08-22-1992-15:38-wht@n4hgf-ECU release 3.20 BETA *//*:03-27-1992-16:21-wht@n4hgf-re-include protection for all .h files *//*:03-20-1992-06:28-wht@n4hgf-max size of esd now 16384 *//*:08-29-1991-02:02-wht@n4hgf2-larger max string size for sun and SVR4 *//*:07-25-1991-12:57-wht@n4hgf-ECU release 3.10 *//*:04-24-1991-18:49-wht@n4hgf-add ESD_MAXSIZE *//*:08-14-1990-20:40-wht@n4hgf-ecu3.00-flush old edit history */#ifndef _esd_h#define _esd_h#define ESD_MAXSIZE 16384typedef struct esd{	char *pb;			/* pointer to string buffer */	short cb;			/* count of bytes */	short maxcb;		/* maximum bytes allowed */	short index;		/* next character of significance */	short old_index;	/* last token (backup or error reporting) */}	ESD;typedef struct keyword_table_type /* table terminated with null key_word */{	char *key_word;		/* 12 char max key word */	int key_token;		/* token returned on match */} KEYTAB;ESD *esdalloc();#endif /* _esd_h *//* vi: set tabstop=4 shiftwidth=4: *//* end of esd.h */

⌨️ 快捷键说明

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