MCPcopy Create free account
hub / github.com/Kitware/VTK / xmlXIncludeSetFlags

Function xmlXIncludeSetFlags

ThirdParty/libxml2/vtklibxml2/xinclude.c:2269–2275  ·  view source on GitHub ↗

* xmlXIncludeSetFlags: * @ctxt: an XInclude processing context * @flags: a set of xmlParserOption used for parsing XML includes * * Set the flags used for further processing of XML resources. * * Returns 0 in case of success and -1 in case of error. */

Source from the content-addressed store, hash-verified

2267 * Returns 0 in case of success and -1 in case of error.
2268 */
2269int
2270xmlXIncludeSetFlags(xmlXIncludeCtxtPtr ctxt, int flags) {
2271 if (ctxt == NULL)
2272 return(-1);
2273 ctxt->parseFlags = flags;
2274 return(0);
2275}
2276
2277/**
2278 * xmlXIncludeSetStreamingMode:

Callers 4

xmlTextReaderReadFunction · 0.85
errParseTestFunction · 0.85

Calls

no outgoing calls

Tested by 1

errParseTestFunction · 0.68