* xmlXIncludeProcessFlags: * @doc: an XML document * @flags: a set of xmlParserOption used for parsing XML includes * * Implement the XInclude substitution on the XML document @doc * * Returns 0 if no substitution were done, -1 if some processing failed * or the number of substitutions done. */
| 2361 | * or the number of substitutions done. |
| 2362 | */ |
| 2363 | int |
| 2364 | xmlXIncludeProcessFlags(xmlDocPtr doc, int flags) { |
| 2365 | return xmlXIncludeProcessFlagsData(doc, flags, NULL); |
| 2366 | } |
| 2367 | |
| 2368 | /** |
| 2369 | * xmlXIncludeProcess: |
no test coverage detected