blob: 537e56a78bd2f61d0c8981b78d0f46fd85711515 [file] [log] [blame]
Owen Taylor3473f882001-02-23 17:55:21 +00001/*
2 * xinclude.c : API to handle XInclude processing
3 *
4 * World Wide Web Consortium Working Draft 26 October 2000
5 * http://www.w3.org/TR/2000/WD-xinclude-20001026
6 *
7 * See Copyright for the status of this software.
8 *
Daniel Veillardc5d64342001-06-24 12:13:24 +00009 * daniel@veillard.com
Owen Taylor3473f882001-02-23 17:55:21 +000010 */
11
12#ifndef __XML_XINCLUDE_H__
13#define __XML_XINCLUDE_H__
14
Igor Zlatkovic76874e42003-08-25 09:05:12 +000015#include <libxml/xmlversion.h>
Owen Taylor3473f882001-02-23 17:55:21 +000016#include <libxml/tree.h>
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
Igor Zlatkovic76874e42003-08-25 09:05:12 +000022XMLPUBFUN int XMLCALL xmlXIncludeProcess (xmlDocPtr doc);
23XMLPUBFUN int XMLCALL xmlXIncludeProcessTree (xmlNodePtr tree);
Owen Taylor3473f882001-02-23 17:55:21 +000024
25#ifdef __cplusplus
26}
27#endif
28#endif /* __XML_XINCLUDE_H__ */