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

📄 xml.h

📁 可移植的xml库。已经在windows和linux上测试通过。只使用C++ Runtine
💻 H
字号:
#ifndef LIBXML_XML_H
#define LIBXML_XML_H

//xml.h - everything about libxml for outer use

#ifdef WIN32
#	include <io.h>
#	include <conio.h>
#else
#	include <unistd.h>
#	include <varargs.h>
#endif
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <assert.h>

#ifdef WIN32
#	ifndef _WINDOWS_
#		define WIN32_LEAN_AND_MEAN
#		include <windows.h>
#	endif//_WINDOWS_
#else
#	define strcmpi strcasecmp
#endif


#include "ids.h"
#include "xmlattrib.h"
#include "xmlcodec.h"
#include "xmlnode.h"
#include "memzone.h"
#include "xmlcache.h"
#include "xmlparser.h"
#include "xmlconfig.h"

#endif//LIBXML_XML_H

⌨️ 快捷键说明

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