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

Function xmlHasNsProp

ThirdParty/libxml2/vtklibxml2/tree.c:6740–6744  ·  view source on GitHub ↗

* xmlHasNsProp: * @node: the node * @name: the attribute name * @nameSpace: the URI of the namespace * * Search for an attribute associated to a node * This attribute has to be anchored in the namespace specified. * This does the entity substitution. * This function looks in DTD attribute declaration for #FIXED or * default declaration values. * Note that a namespace of NULL indicates

Source from the content-addressed store, hash-verified

6738 * making this function unreliable.
6739 */
6740xmlAttrPtr
6741xmlHasNsProp(const xmlNode *node, const xmlChar *name, const xmlChar *nameSpace) {
6742
6743 return(xmlGetPropNodeInternal(node, name, nameSpace, 1));
6744}
6745
6746/**
6747 * xmlNodeGetAttrValue:

Callers 2

xmlC14NFixupBaseAttrFunction · 0.85

Calls 1

xmlGetPropNodeInternalFunction · 0.85

Tested by

no test coverage detected