Owen Taylor | 3473f88 | 2001-02-23 17:55:21 +0000 | [diff] [blame] | 1 | /* |
| 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 |
| 18 | extern "C" { |
| 19 | #endif |
| 20 | |
| 21 | int xmlXIncludeProcess (xmlDocPtr doc); |
| 22 | |
| 23 | #ifdef __cplusplus |
| 24 | } |
| 25 | #endif |
| 26 | #endif /* __XML_XINCLUDE_H__ */ |