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

📄 parse.h

📁 HTML语言的例子
💻 H
字号:
/*     @(#)parse.h 1 April 20, 1995   */#ifndef PARSE_H#define PARSE_H/* Structure to hold the attribute/value pairs. */typedef struct pair {  char *attrib;  char *value;} Pair;/*Prototype the functions that will build the attribute/value pairs. */char *build(int size, char delim, int *len);char *buildget(char *query, int size, char delim, int *len);#endif

⌨️ 快捷键说明

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