blob: eca4588cf0821d8f116727598f17baba2c3eb6fe [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 *
9 * Daniel.Veillard@w3.org
10 */
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);
22
23#ifdef __cplusplus
24}
25#endif
26#endif /* __XML_XINCLUDE_H__ */