xmlwf.h
来自「一个基于SAX分析方法的XML文档解析函数包」· C头文件 代码 · 共 28 行
H
28 行
#ifndef XMLWF_H
#define XMLWF_H
#include "CommonData.h"
#include <stdio.h>
#define BUF_SIZE 100
const XML_Char* __GetNameFromAttriByIndex(const void* attri, int index);
const XML_Char* __GetValueFromAttriByIndex(const void* attri, int index);
const XML_Char* __GetValueByName(const void* attri, const XML_Char* name);
/**
Initializing the gloable variables in XMLwf.c, which will provide the stream from
data input source.
*/
int initialGlobalVar(unsigned int s, FILE* pf, int type);
/**
Processing the xml file got in in file stream type.
*/
int XML_doParse(Pxml_parser parser);
void test();
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?