blob: 25be1fee02ded6e635859a0628a0f2c648b9e99b [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
15#include <libxml/tree.h>
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21int xmlXIncludeProcess (xmlDocPtr doc);
Daniel Veillard8edf1c52003-07-22 20:52:14 +000022int xmlXIncludeProcessTree (xmlNodePtr tree);
Owen Taylor3473f882001-02-23 17:55:21 +000023
24#ifdef __cplusplus
25}
26#endif
27#endif /* __XML_XINCLUDE_H__ */