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

Function xmlParseEntityRef

ThirdParty/libxml2/vtklibxml2/parser.c:7716–7728  ·  view source on GitHub ↗

* xmlParseEntityRef: * @ctxt: an XML parser context * * DEPRECATED: Internal function, don't use. * * Returns the xmlEntityPtr if found, or NULL otherwise. */

Source from the content-addressed store, hash-verified

7714 * Returns the xmlEntityPtr if found, or NULL otherwise.
7715 */
7716xmlEntityPtr
7717xmlParseEntityRef(xmlParserCtxtPtr ctxt) {
7718 const xmlChar *name;
7719
7720 if (ctxt == NULL)
7721 return(NULL);
7722
7723 name = xmlParseEntityRefInternal(ctxt);
7724 if (name == NULL)
7725 return(NULL);
7726
7727 return(xmlLookupGeneralEntity(ctxt, name, /* inAttr */ 0));
7728}
7729
7730/**
7731 * xmlParseStringEntityRef:

Callers

nothing calls this directly

Calls 2

xmlLookupGeneralEntityFunction · 0.85

Tested by

no test coverage detected