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

📄 htwsrc.h

📁 elinks下lynx是最重要的二个文本浏览器, 在linux下非常实用, lynx比elinks早的多, 目前好像停止开发, 这是lynx源代码
💻 H
字号:
/*                                                             A parser for WAIS source files                                 WAIS SOURCE FILE PARSER   This converter returns a stream object into which a WAIS source file can be written.   The result is put via a structured stream into whatever format was required for the   output stream.   See also: HTWAIS protocol interface module */#ifndef HTWSRC_H#define HTWSRC_H#include <HTFormat.h>extern  char from_hex PARAMS((char c));extern  HTStream* HTWSRCConvert PARAMS((        HTPresentation *        pres,        HTParentAnchor *        anchor,        HTStream *              sink));/*Escaping Strings   HTDeSlash takes out the invlaid characters in a URL path ELEMENT by converting them   into hex-escaped characters.  HTEnSlash does the reverse.   Each returns a pointer to a newly allocated string which must eventually be freed by   the caller. */extern char * HTDeSlash PARAMS((CONST char * str));extern char * HTEnSlash PARAMS((CONST char * str));#endif /* HTWSRC_H */

⌨️ 快捷键说明

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