parse.h
来自「HTML语言的例子」· C头文件 代码 · 共 16 行
H
16 行
/* @(#)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 + =
减小字号Ctrl + -
显示快捷键?