* xmlXIncludeProcess: * @doc: an XML document * * 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. */
| 2375 | * or the number of substitutions done. |
| 2376 | */ |
| 2377 | int |
| 2378 | xmlXIncludeProcess(xmlDocPtr doc) { |
| 2379 | return(xmlXIncludeProcessFlags(doc, 0)); |
| 2380 | } |
| 2381 | |
| 2382 | /** |
| 2383 | * xmlXIncludeProcessTreeFlags: |
no test coverage detected