* xmlXIncludeProcessTree: * @tree: a node in an XML document * * Implement the XInclude substitution for the given subtree * * Returns 0 if no substitution were done, -1 if some processing failed * or the number of substitutions done. */
| 2419 | * or the number of substitutions done. |
| 2420 | */ |
| 2421 | int |
| 2422 | xmlXIncludeProcessTree(xmlNodePtr tree) { |
| 2423 | return(xmlXIncludeProcessTreeFlags(tree, 0)); |
| 2424 | } |
| 2425 | |
| 2426 | /** |
| 2427 | * xmlXIncludeProcessNode: |
nothing calls this directly
no test coverage detected